1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

WL #1279: Add table description to xml dump

changes after montys review
This commit is contained in:
ram@gw.mysql.r18.ru
2003-11-03 16:49:39 +04:00
parent abfa5514e4
commit 3dba5c6cc1
3 changed files with 136 additions and 58 deletions

View File

@@ -9,6 +9,11 @@ INSERT INTO t1 VALUES (1), (2);
--exec $MYSQL_DUMP --skip-all -X test t1
DROP TABLE t1;
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;
#
# Bug #1707
#