diff options
author | Bjorn Munch <bjorn.munch@oracle.com> | 2011-01-17 10:28:53 +0100 |
---|---|---|
committer | Bjorn Munch <bjorn.munch@oracle.com> | 2011-01-17 10:28:53 +0100 |
commit | 8ed50d99721130f1431d1b41491f4ad8232beeed (patch) | |
tree | 2148d39a13e0342996f9ccdf5f7c6ccb8b9f5912 /mysql-test/t/mysqldump.test | |
parent | 251869175e157a21d35191b301ef597a0aad986b (diff) | |
parent | 208b677637ef9d140c1629a0de4d4963c02ea533 (diff) | |
download | mariadb-git-8ed50d99721130f1431d1b41491f4ad8232beeed.tar.gz |
merge from 5.1 main
Diffstat (limited to 'mysql-test/t/mysqldump.test')
-rw-r--r-- | mysql-test/t/mysqldump.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/mysqldump.test b/mysql-test/t/mysqldump.test index 9246d488dd8..fe0b05dbb42 100644 --- a/mysql-test/t/mysqldump.test +++ b/mysql-test/t/mysqldump.test @@ -2164,6 +2164,15 @@ SELECT LENGTH(a) FROM t2; DROP TABLE t1, t2; ########################################################################### + +--echo # +--echo # Bug #13618 : mysqldump --xml ommit comment on table field +--echo # + +CREATE TABLE `comment_table` (i INT COMMENT 'FIELD COMMENT') COMMENT = 'TABLE COMMENT'; +--exec $MYSQL_DUMP --compact --skip-create --xml test +DROP TABLE `comment_table`; + --echo # --echo # End of 5.1 tests --echo # |