From a7abddeffa6a760ce948c2dfb007cdf3f1a369d5 Mon Sep 17 00:00:00 2001 From: Michael Widenius Date: Fri, 9 Mar 2018 14:05:35 +0200 Subject: Create 'main' test directory and move 't' and 'r' there --- mysql-test/main/client_xml.result | 92 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 mysql-test/main/client_xml.result (limited to 'mysql-test/main/client_xml.result') diff --git a/mysql-test/main/client_xml.result b/mysql-test/main/client_xml.result new file mode 100644 index 00000000000..6f91c18318c --- /dev/null +++ b/mysql-test/main/client_xml.result @@ -0,0 +1,92 @@ +set @old_concurrent_insert= @@global.concurrent_insert; +set @@global.concurrent_insert= 0; +drop table if exists t1; +create table t1 ( +`a&b` int, +`ab` text +); +insert into t1 values (1, 2, 'a&b ab'); + + + + + 1 + 2 + a&b a<b a>b + + + + + + + + + + + + + 1 + 2 + a&b a<b a>b + + + + + + + + + 1 + + + + + + + 1 + + + + + + + 0 + + + + + + + 1 + + + + + + + + + + + + +-------------- +select 1 limit 0 +-------------- + + + + +Empty set + +Bye +drop table t1; +set @@global.concurrent_insert= @old_concurrent_insert; -- cgit v1.2.1