mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
04bad39e33
mysql-test/r/mysqlbinlog.result: fixes for mysql tests. mysql-test/r/mysqldump.result: fixes for mysql tests. mysql-test/r/negation_elimination.result: fixes for mysql tests. mysql-test/t/mysqlbinlog.test: fixes for mysql tests. mysql-test/t/mysqldump.test: fixes for mysql tests.
19 lines
361 B
Text
19 lines
361 B
Text
--disable_warnings
|
|
DROP TABLE IF EXISTS t1, `"t"1`;
|
|
--enable_warnings
|
|
|
|
# XML output
|
|
|
|
CREATE TABLE t1(a int);
|
|
INSERT INTO t1 VALUES (1), (2);
|
|
--exec $MYSQL_DUMP --skip-all -X test t1
|
|
DROP TABLE t1;
|
|
|
|
#
|
|
# Bug #1707
|
|
#
|
|
|
|
CREATE TABLE `"t"1` (`a"b"` char(2));
|
|
INSERT INTO `"t"1` VALUES ("1\""), ("\"2");
|
|
--exec $MYSQL_DUMP --skip-all -X test \"t\"1
|
|
DROP TABLE `"t"1`;
|