summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/rpl/t/rpl_000010.test
blob: 9ff2d6c562da089c37a9574cdba1dd29d2940225 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This tests the offset off by 22 mystery bug
# Must run slave with --disconnect-slave-event-count=1 --master-connect-retry=1

source include/master-slave.inc;

--connection slave
--source include/stop_slave.inc
CHANGE MASTER TO MASTER_USE_GTID=NO;
--source include/start_slave.inc
--connection master

create table t1 (n int not null auto_increment primary key);
insert into t1 values(NULL);
insert into t1 values(2);
sync_slave_with_master;
select n from t1;
connection master;
drop table t1;
sync_slave_with_master;

# End of 4.1 tests
--source include/rpl_end.inc