mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
new mysqldump -X test (bug #1707)
This commit is contained in:
@@ -6,5 +6,14 @@ DROP TABLE IF EXISTS t1;
|
||||
|
||||
CREATE TABLE t1(a int);
|
||||
INSERT INTO t1 VALUES (1), (2);
|
||||
--exec $MYSQL_DUMP -X test t1
|
||||
--exec $MYSQL_DUMP --skip-all -X test t1
|
||||
DROP TABLE t1;
|
||||
|
||||
#
|
||||
# Bug #1707
|
||||
#
|
||||
|
||||
CREATE TABLE `t"1` (`a"b"c"` char(2));
|
||||
INSERT INTO `t"1` VALUES ("\"1"), ("2\"");
|
||||
--exec $MYSQL_DUMP --skip-all -X test
|
||||
DROP TABLE `t"1`;
|
||||
|
||||
Reference in New Issue
Block a user