summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/kill_race_condition.result
blob: 87ee3214b8e292cfb8440eb731e4643e7409b3db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
include/master-slave.inc
[connection master]
connection slave;
set global debug_dbug='d,rows_log_event_before_open_table';
set debug_sync='now WAIT_FOR before_open_table';
connection master;
create table t1 (a int);
insert t1 values (1),(2),(3);
connection slave;
kill slave_sql_thread;
set debug_sync='now SIGNAL go_ahead_sql';
set global debug_dbug='';
set debug_sync='RESET';
connection master;
drop table t1;
connection slave;
start slave;
include/rpl_end.inc