source include/master-slave.inc; connection master; create table t1 (data longblob) engine=myisam; connection master; insert into t1 (data) values (repeat('a',1*1024*1024)); insert into t1 select * from t1; insert into t1 select * from t1; insert into t1 select * from t1; insert into t1 select * from t1; insert into t1 select * from t1; insert into t1 select * from t1; insert into t1 select * from t1; insert into t1 select * from t1; send insert into t1 select * from t1; exec kill -9 `cat var/run/master.pid`; connection slave; sleep 5; #should be select count(*) from t1; --vertical_results show slave status;