include/master-slave.inc [connection master] create table t1 (a int) engine=innodb; create table t2 (b longblob) engine=innodb; create table t3 (c int) engine=innodb; insert into t2 values (repeat('b',1024*1024)); insert into t2 select * from t2; insert into t2 select * from t2; insert into t2 select * from t2; insert into t2 select * from t2; set debug_sync='rm_table_no_locks_before_delete_table SIGNAL nogo WAIT_FOR go EXECUTE 2'; drop table t1, t2, t3; connect foo,localhost,root; set debug_sync='now SIGNAL go'; kill query CONNECTION_ID; connection master; ERROR 70100: Query execution was interrupted "Tables t2 and t3 should be listed" SHOW TABLES; Tables_in_test t2 t3 include/show_binlog_events.inc Log_name Pos Event_type Server_id End_log_pos Info master-bin.000001 # Gtid # # GTID #-#-# master-bin.000001 # Query # # use `test`; DROP TABLE `t1` /* generated by server */ connection slave; drop table t2, t3; connection master; set debug_sync='RESET'; drop table t2, t3; include/rpl_end.inc