mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 15:45:33 +02:00
Fix _another_ race in test case rpl_cant_read_event_incident (seen in 5.5 Buildbot).
This commit is contained in:
parent
0e6dd6713c
commit
bc2c40e71b
2 changed files with 8 additions and 2 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue