1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix _another_ race in test case rpl_cant_read_event_incident (seen in 5.5 Buildbot).

This commit is contained in:
unknown
2012-02-11 13:32:36 +01:00
parent 0e6dd6713c
commit bc2c40e71b
2 changed files with 8 additions and 2 deletions

View File

@ -15,5 +15,5 @@ Last_IO_Error = 'Got fatal error 1236 from master when reading data from binary
reset master;
stop slave;
reset slave;
drop table t;
drop table if exists t;
End of the tests

View File

@ -69,6 +69,12 @@ reset master;
--connection slave
stop 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