580
592
--echo # Bug #9657 mysqldump xml ( -x ) does not format NULL fields correctly
584
596
create table t2 (pk int primary key auto_increment,
585
a int(10), b varchar(30), c datetime, d blob, e text);
597
a int, b varchar(30), c datetime, d blob, e text);
586
598
insert into t1 values (NULL), (10), (20);
587
599
insert into t2 (a, b) values (NULL, NULL),(10, NULL),(NULL, "twenty"),(30, "thirty");
588
600
--exec $DRIZZLE_DUMP --skip-comments --xml --no-create-info test