summaryrefslogtreecommitdiff
path: root/mysql-test/main/client_xml.result
blob: 6f91c18318cf30ea1711da8cd299d5390adb978f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
set @old_concurrent_insert= @@global.concurrent_insert;
set @@global.concurrent_insert= 0;
drop table if exists t1;
create table t1 (
`a&b` int,
`a<b` int NOT NULL,
`a>b` text
);
insert into t1 values (1, 2, 'a&b a<b a>b');
<?xml version="1.0"?>

<resultset statement="select * from t1
" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <row>
	<field name="a&amp;b">1</field>
	<field name="a&lt;b">2</field>
	<field name="a&gt;b">a&amp;b a&lt;b a&gt;b</field>
  </row>
</resultset>
<?xml version="1.0"?>
<mysqldump xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<database name="test">
	<table_structure name="t1">
		<field Field="a&amp;b" Type="int(11)" Null="YES" Key="" Default="NULL" Extra="" Comment="" />
		<field Field="a&lt;b" Type="int(11)" Null="NO" Key="" Extra="" Comment="" />
		<field Field="a&gt;b" Type="text" Null="YES" Key="" Default="NULL" Extra="" Comment="" />
	</table_structure>
	<table_data name="t1">
	<row>
		<field name="a&amp;b">1</field>
		<field name="a&lt;b">2</field>
		<field name="a&gt;b">a&amp;b a&lt;b a&gt;b</field>
	</row>
	</table_data>
</database>
</mysqldump>
<?xml version="1.0"?>

<resultset statement="select count(*) from t1
" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <row>
	<field name="count(*)">1</field>
  </row>
</resultset>
<?xml version="1.0"?>

<resultset statement="select 1 &lt; 2 from dual
" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <row>
	<field name="1 &lt; 2">1</field>
  </row>
</resultset>
<?xml version="1.0"?>

<resultset statement="select 1 &gt; 2 from dual
" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <row>
	<field name="1 &gt; 2">0</field>
  </row>
</resultset>
<?xml version="1.0"?>

<resultset statement="select 1 &amp; 3 from dual
" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <row>
	<field name="1 &amp; 3">1</field>
  </row>
</resultset>
<?xml version="1.0"?>

<resultset statement="select null from dual
" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <row>
	<field name="NULL" xsi:nil="true" />
  </row>
</resultset>
<?xml version="1.0"?>

<resultset statement="select 1 limit 0
" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"></resultset>
--------------
select 1 limit 0
--------------

<?xml version="1.0"?>

<resultset statement="select 1 limit 0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"></resultset>
Empty set

Bye
drop table t1;
set @@global.concurrent_insert= @old_concurrent_insert;