2000-11-22 08:23:31 +01:00
|
|
|
#this tests the offset off by 22 mystery bug
|
|
|
|
#must run slave with --disconnect-slave-event-count=1 --master-connect-retry=1
|
2000-12-07 15:54:59 +01:00
|
|
|
source include/master-slave.inc;
|
2000-11-22 08:23:31 +01:00
|
|
|
connection slave;
|
2001-01-03 01:15:48 +01:00
|
|
|
drop table if exists t1;
|
2000-11-22 08:23:31 +01:00
|
|
|
connection master;
|
2001-01-03 01:15:48 +01:00
|
|
|
drop table if exists t1;
|
|
|
|
create table t1 (n int not null auto_increment primary key);
|
|
|
|
insert into t1 values(NULL);
|
|
|
|
insert into t1 values(2);
|
2001-01-17 13:47:33 +01:00
|
|
|
save_master_pos;
|
2000-11-22 08:23:31 +01:00
|
|
|
connection slave;
|
2001-01-17 13:47:33 +01:00
|
|
|
sync_with_master;
|
2001-03-25 00:02:26 +01:00
|
|
|
select n from t1;
|
2001-01-03 01:15:48 +01:00
|
|
|
connection master;
|
|
|
|
drop table t1;
|
2001-01-17 13:47:33 +01:00
|
|
|
save_master_pos;
|
|
|
|
connection slave;
|
|
|
|
sync_with_master;
|
2001-01-22 20:35:16 +01:00
|
|
|
|