diff --git a/mysql-test/r/mysqldump.result b/mysql-test/r/mysqldump.result index 3be6111a65f..54c68701f78 100644 --- a/mysql-test/r/mysqldump.result +++ b/mysql-test/r/mysqldump.result @@ -3195,6 +3195,28 @@ UNLOCK TABLES; DROP TABLE `t1`; # +# Bug #19745: mysqldump --xml produces invalid xml +# +DROP TABLE IF EXISTS t1; +CREATE TABLE t1 (f1 int(10), data MEDIUMBLOB); +INSERT INTO t1 VALUES(1,0xff00fef0); + + + + + + + + + + 1 + FF00FEF0 + + + + +DROP TABLE t1; +# # End of 5.0 tests # drop table if exists t1; @@ -3235,29 +3257,6 @@ UNLOCK TABLES; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; DROP TABLE t1; -# Bug #19745: mysqldump --xml produces invalid xml -# -DROP TABLE IF EXISTS t1; -CREATE TABLE t1 (f1 int(10), data MEDIUMBLOB); -INSERT INTO t1 VALUES(1,0xff00fef0); - - - - - - - - - - 1 - FF00FEF0 - - - - -DROP TABLE t1; -# -# End of 5.0 tests create table t1 (a text , b text); create table t2 (a text , b text); insert t1 values ("Duck, Duck", "goose");