mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Fix _another_ race in test case rpl_cant_read_event_incident (seen in 5.5 Buildbot).
This commit is contained in:
@@ -15,5 +15,5 @@ Last_IO_Error = 'Got fatal error 1236 from master when reading data from binary
|
|||||||
reset master;
|
reset master;
|
||||||
stop slave;
|
stop slave;
|
||||||
reset slave;
|
reset slave;
|
||||||
drop table t;
|
drop table if exists t;
|
||||||
End of the tests
|
End of the tests
|
||||||
|
@@ -69,6 +69,12 @@ reset master;
|
|||||||
--connection slave
|
--connection slave
|
||||||
stop slave;
|
stop slave;
|
||||||
reset slave;
|
reset slave;
|
||||||
drop table t; # table was created from binlog. it does not exist on master.
|
# The table t may have been created on the slave from binlog. It does not exist
|
||||||
|
# on the master.
|
||||||
|
# "May", as it depends on whether the SQL thread had time do do the CREATE
|
||||||
|
# TABLE before we stopped.
|
||||||
|
--disable_warnings
|
||||||
|
drop table if exists t;
|
||||||
|
--enable_warnings
|
||||||
|
|
||||||
--echo End of the tests
|
--echo End of the tests
|
||||||
|
Reference in New Issue
Block a user