mirror of
https://github.com/MariaDB/server.git
synced 2025-08-27 13:04:36 +03:00
14 lines
431 B
Plaintext
14 lines
431 B
Plaintext
#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;
|
|
drop table if exists foo;
|
|
connection master;
|
|
drop table if exists foo;
|
|
create table foo (n int not null auto_increment primary key);
|
|
insert into foo values(NULL);
|
|
insert into foo values(2);
|
|
connection slave;
|
|
sleep 5;
|
|
@r/rpl000010.result select n from foo;
|