~ubuntu-branches/ubuntu/hardy/mysql-dfsg-5.0/hardy-updates

« back to all changes in this revision

Viewing changes to mysql-test/r/client_xml.result

  • Committer: Bazaar Package Importer
  • Author(s): sean finney
  • Date: 2007-05-13 12:32:45 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20070513123245-8c3l187dk34cz2ar
Tags: 5.0.41-2
the previous "translation changes" inadvertently introduced unrelated
changes in the package control file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
<?xml version="1.0"?>
8
8
 
9
9
<resultset statement="select * from t1
10
 
">
 
10
" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
11
11
  <row>
12
12
        <field name="a&amp;b">1</field>
13
13
        <field name="a&lt;b">2</field>
34
34
<?xml version="1.0"?>
35
35
 
36
36
<resultset statement="select count(*) from t1
37
 
">
 
37
" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
38
38
  <row>
39
39
        <field name="count(*)">1</field>
40
40
  </row>
42
42
<?xml version="1.0"?>
43
43
 
44
44
<resultset statement="select 1 &lt; 2 from dual
45
 
">
 
45
" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
46
46
  <row>
47
47
        <field name="1 &lt; 2">1</field>
48
48
  </row>
50
50
<?xml version="1.0"?>
51
51
 
52
52
<resultset statement="select 1 &gt; 2 from dual
53
 
">
 
53
" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
54
54
  <row>
55
55
        <field name="1 &gt; 2">0</field>
56
56
  </row>
58
58
<?xml version="1.0"?>
59
59
 
60
60
<resultset statement="select 1 &amp; 3 from dual
61
 
">
 
61
" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
62
62
  <row>
63
63
        <field name="1 &amp; 3">1</field>
64
64
  </row>
66
66
<?xml version="1.0"?>
67
67
 
68
68
<resultset statement="select null from dual
69
 
">
 
69
" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
70
70
  <row>
71
71
        <field name="NULL" xsi:nil="true" />
72
72
  </row>