mySQL 5.0.11 sources for tomato
[tomato.git] / release / src / router / mysql / mysql-test / r / multi_statement.result
blobff19cbdd69881710fe131b528a14a06f29a9df23
1 DROP TABLE IF EXISTS t1;
2 select 1;
5 select 2;
6 select 3;
7 select 4||||
14 select 5;
15 select 6;
16 select 50, 'abc';'abcd'
21 50      abc
22 50      abc
23 select "abcd'";'abcd'
24 abcd'
25 abcd'
26 select "'abcd";'abcd'
27 'abcd
28 'abcd
29 select 5'abcd'
32 select 'finish';
33 finish
34 finish
35 flush status;
36 create table t1 (i int);
37 insert into t1 values (1);
38 select * from t1 where i = 1;
39 insert into t1 values (2),(3),(4);
40 select * from t1 where i = 2;
41 select * from t1 where i = 3||||
48 show status like 'Slow_queries'||||
49 Variable_name   Value
50 Slow_queries    2
51 drop table t1||||