Commit 9791d4b4 authored by Marko Mäkelä's avatar Marko Mäkelä

After-merge fix: Correct s3.mysqldump result

parent 822066ac
...@@ -23,7 +23,11 @@ CREATE TABLE `t1` ( ...@@ -23,7 +23,11 @@ CREATE TABLE `t1` (
PRIMARY KEY (`pk`) PRIMARY KEY (`pk`)
) ENGINE=Aria DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1; ) ENGINE=Aria DEFAULT CHARSET=latin1 PAGE_CHECKSUM=1;
/*!40101 SET character_set_client = @saved_cs_client */; /*!40101 SET character_set_client = @saved_cs_client */;
INSERT INTO `t1` VALUES (1,1),(2,2),(3,3),(4,4); INSERT INTO `t1` VALUES
(1,1),
(2,2),
(3,3),
(4,4);
ALTER TABLE `t1` ENGINE=S3; ALTER TABLE `t1` ENGINE=S3;
##### #####
# mysqldump with --copy-s3-tables=1 XML # mysqldump with --copy-s3-tables=1 XML
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment