# This tests the offset off by 22 mystery bug
# Must run slave with --disconnect-slave-event-count=1 --master-connect-retry=1
source include/not_gtid_enabled.inc;
source include/master-slave.inc;
create table t1 (n int not null auto_increment primary key);
insert into t1 values(NULL);
insert into t1 values(2);
--source include/sync_slave_sql_with_master.inc
select n from t1;
connection master;
drop table t1;
--source include/sync_slave_sql_with_master.inc
# End of 4.1 tests
--source include/rpl_end.inc
-
JooHan Hong authoreda1dce81a