Commit bc2c40e7 authored by unknown's avatar unknown

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

parent 0e6dd671
...@@ -15,5 +15,5 @@ Last_IO_Error = 'Got fatal error 1236 from master when reading data from binary ...@@ -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; ...@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment