mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
5487d7a8c0
Removed usage of @r/result as this made life hard when testing different table handlers. Allow concurrent inserts if no update/binary log. Don't remove key_cache at flush tables. Fixed bug in SELECT DISTINCT SUM()...
20 lines
519 B
Text
20 lines
519 B
Text
#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 t1;
|
|
connection master;
|
|
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);
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
select n from t1;
|
|
connection master;
|
|
drop table t1;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
|