mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Fixed race conditions in rpl_multi_update and rpl_multi_delete tests which
caused spurious test failures.
This commit is contained in:
@@ -24,7 +24,7 @@ connection master;
|
||||
delete from t1;
|
||||
delete from t2;
|
||||
|
||||
connection slave;
|
||||
sync_slave_with_master;
|
||||
# force a difference to see if master's multi-DELETE will correct it
|
||||
insert into t1 values(1);
|
||||
insert into t2 values(1);
|
||||
|
||||
@@ -33,7 +33,7 @@ delete from t2;
|
||||
insert into t1 values(1,1);
|
||||
insert into t2 values(1,1);
|
||||
|
||||
connection slave;
|
||||
sync_slave_with_master;
|
||||
# force a difference to see if master's multi-UPDATE will correct it
|
||||
update t1 set a=2;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user