1
# Test of the xml output of the 'mysql' and 'mysqldump' clients -- makes
2
# sure that basic encoding issues are handled properly
8
insert into t1 values (1, 2, 'a&b a<b a>b');
9
--exec $MYSQL --xml test -e "select * from t1"
10
--exec $MYSQL_DUMP --xml --skip-create test
12
--exec $MYSQL --xml test -e "select count(*) from t1"
13
--exec $MYSQL --xml test -e "select 1 < 2 from dual"
14
--exec $MYSQL --xml test -e "select 1 > 2 from dual"
15
--exec $MYSQL --xml test -e "select 1 & 3 from dual"
16
--exec $MYSQL --xml test -e "select null from dual"
17
--exec $MYSQL --xml test -e "select 1 limit 0"
18
--exec $MYSQL --xml test -vv -e "select 1 limit 0"