diff options
author | unknown <msvensson@neptunus.(none)> | 2006-10-19 12:36:40 +0200 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-10-19 12:36:40 +0200 |
commit | 32b3846c9c5b112d99f16b165935622a26233eaf (patch) | |
tree | a496eb759da3bd0011237bd95ae3f07a57aab9bb /mysql-test/t | |
parent | 123275321f3accf5c74c203f1a55be130b1af4ee (diff) | |
parent | 33d9c05a6ca101c8ff9df97f6bb6aac15a6b2f9f (diff) | |
download | mariadb-git-32b3846c9c5b112d99f16b165935622a26233eaf.tar.gz |
Merge bk-internal:/home/bk/mysql-5.0-maint
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
client/mysqldump.c:
Auto merged
sql/sql_class.cc:
Auto merged
Diffstat (limited to 'mysql-test/t')
-rw-r--r-- | mysql-test/t/mysqldump.test | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/t/mysqldump.test b/mysql-test/t/mysqldump.test index 6dfb24c2e75..72aad395ec0 100644 --- a/mysql-test/t/mysqldump.test +++ b/mysql-test/t/mysqldump.test @@ -1413,5 +1413,20 @@ DROP TABLE `t1`; --enable_warnings --echo # +--echo # Bug #19745: mysqldump --xml produces invalid xml +--echo # + +--disable_warnings +DROP TABLE IF EXISTS t1; +--enable_warnings + +CREATE TABLE t1 (f1 int(10), data MEDIUMBLOB); +INSERT INTO t1 VALUES(1,0xff00fef0); + +--exec $MYSQL_DUMP --xml --hex-blob --skip-create-options test t1 + +DROP TABLE t1; + +--echo # --echo # End of 5.0 tests --echo # |