~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/t/client_xml.test

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Can't run with embedded server
2
2
-- source include/not_embedded.inc
3
3
 
 
4
# Disable concurrent inserts to avoid test failures when reading
 
5
# data from concurrent connections (insert might return before
 
6
# the data is actually in the table).
 
7
set @old_concurrent_insert= @@global.concurrent_insert;
 
8
set @@global.concurrent_insert= 0;
 
9
 
4
10
# Test of the xml output of the 'mysql' and 'mysqldump' clients -- makes
5
11
# sure that basic encoding issues are handled properly
6
12
create table t1 (
21
27
--exec $MYSQL --xml test -vv -e "select 1 limit 0"
22
28
 
23
29
drop table t1;
 
30
 
 
31
# Restore global concurrent_insert value
 
32
set @@global.concurrent_insert= @old_concurrent_insert;