1DROP TABLE IF EXISTS t1;
2select 1;
31
41
5select 2;
6select 3;
7select 4||||
82
92
103
113
124
134
14select 5;
15select 6;
16select 50, 'abc';'abcd'
175
185
196
206
2150	abc
2250	abc
23select "abcd'";'abcd'
24abcd'
25abcd'
26select "'abcd";'abcd'
27'abcd
28'abcd
29select 5'abcd'
305
315
32select 'finish';
33finish
34finish
35flush status;
36create table t1 (i int);
37insert into t1 values (1);
38select * from t1 where i = 1;
39insert into t1 values (2),(3),(4);
40select * from t1 where i = 2;
41select * from t1 where i = 3||||
42i
431
44i
452
46i
473
48show status like 'Slow_queries'||||
49Variable_name	Value
50Slow_queries	2
51drop table t1||||
52