2003-09-19 14:02:49 +05:00
|
|
|
--disable_warnings
|
2003-10-31 16:37:36 +04:00
|
|
|
DROP TABLE IF EXISTS t1, `"t"1`;
|
2003-09-19 14:02:49 +05:00
|
|
|
--enable_warnings
|
|
|
|
|
|
|
|
# XML output
|
|
|
|
|
|
|
|
CREATE TABLE t1(a int);
|
|
|
|
INSERT INTO t1 VALUES (1), (2);
|
2003-10-31 11:29:57 +04:00
|
|
|
--exec $MYSQL_DUMP --skip-all -X test t1
|
2003-09-19 14:02:49 +05:00
|
|
|
DROP TABLE t1;
|
2003-10-31 11:29:57 +04:00
|
|
|
|
2003-11-03 16:49:39 +04:00
|
|
|
CREATE TABLE t1(a int, b text, c varchar(3));
|
|
|
|
INSERT INTO t1 VALUES (1, "test", "tes"), (2, "TEST", "TES");
|
|
|
|
--exec $MYSQL_DUMP --skip-all -X test t1
|
|
|
|
DROP TABLE t1;
|
|
|
|
|
2003-10-31 11:29:57 +04:00
|
|
|
#
|
|
|
|
# Bug #1707
|
|
|
|
#
|
|
|
|
|
2003-10-31 16:37:36 +04:00
|
|
|
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`;
|