2
DROP TABLE IF EXISTS t1;
13
select 50, 'abc';'abcd'
14
select "abcd'";'abcd'select "'abcd";'abcd'
19
# Bug #8475: Make sure every statement that is a slow query in
20
# a multi-statement query gets logged as a slow query.
23
create table t1 (i int);
24
insert into t1 values (1);
25
select * from t1 where i = 1;
26
insert into t1 values (2),(3),(4);
27
select * from t1 where i = 2;
28
select * from t1 where i = 3||||
29
show status like 'Slow_queries'||||