mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Bug#20841 mysqldump fails to store right info with --compatible=mysql40 option
- Add "not in version before" commensta around new syntax "WITH PARSER" and "TABLESPACE xxx STORAGE DISK" mysql-test/r/ndb_dd_advance.result: Update result file mysql-test/r/ndb_dd_advance2.result: Update result file mysql-test/r/ndb_dd_backuprestore.result: Update result file mysql-test/r/ndb_dd_basic.result: Update result file mysql-test/r/ndb_dd_disk2memory.result: Update result file sql/sql_show.cc: Add "not in version before" comments around "WITH PARSER xxx" and "TABLESPACE xxx STORAGE DISK" Use STRING_WITH_LEN when adding fixed string AUTO_INCREMENT= to output from SHOW TABLE
This commit is contained in:
@ -49,7 +49,7 @@ t1 CREATE TABLE `t1` (
|
||||
`b` int(11) NOT NULL,
|
||||
`c` int(11) NOT NULL,
|
||||
PRIMARY KEY (`pk1`)
|
||||
) TABLESPACE ts1 STORAGE DISK ENGINE=ndbcluster DEFAULT CHARSET=latin1
|
||||
) /*!50100 TABLESPACE ts1 STORAGE DISK */ ENGINE=ndbcluster DEFAULT CHARSET=latin1
|
||||
INSERT INTO t1 VALUES (0, 0, 0);
|
||||
SELECT * FROM t1;
|
||||
pk1 b c
|
||||
|
Reference in New Issue
Block a user