summaryrefslogtreecommitdiff
path: root/mysql-test/include/rowid_filter_debug_kill.inc
blob: c701d206297c91035b857c8e9f2e27a434cc070a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
--source include/have_debug.inc
--source include/have_debug_sync.inc
--source include/count_sessions.inc

--echo #
--echo # MDEV-22761 KILL QUERY during rowid_filter, crashes
--echo #

create table t0(a int);
insert into t0 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);

# 100 rows 
create table t2(a int);
insert into t2 select A.a + B.a* 10 from t0 A, t0 B;

# 10K rows 
CREATE TABLE t3 (
  key1 int ,
  key2 int,
  filler varchar(255),
  KEY (key1),
  KEY (key2)
);
select engine from information_schema.tables
where table_schema=database() and table_name='t3';

insert into t3
select
  A.a,
  B.a,
  'filler-data-filler-data'
from
  t2 A, t2 B;

analyze table t2,t3;

explain
select * from t2, t3
where 
  t3.key1=t2.a and t3.key2 in (2,3);

let $target_id= `select connection_id()`;

set debug_sync='handler_rowid_filter_check SIGNAL at_rowid_filter_check WAIT_FOR go';
send
select * from t2, t3
where 
  t3.key1=t2.a and t3.key2 in (2,3);

connect (con1, localhost, root,,);
connection con1;
set debug_sync='now WAIT_FOR at_rowid_filter_check';
evalp kill query $target_id;
set debug_sync='now SIGNAL go';

connection default;
disconnect con1;

--error ER_QUERY_INTERRUPTED
reap;
set debug_sync='RESET';

drop table t0,t2,t3;
--source include/wait_until_count_sessions.inc