Commit b9b25ada authored by knielsen@mysql.com's avatar knielsen@mysql.com

BUG#20677: Sporadic failure of test case 'ndb_binlog_multi'.

Start test case with a dummy table create and drop. This ensures that
NDB event subscription is properly set up before the real test starts,
which otherwise could sometimes cause INSERT events to be lost.
parent ce07f4b9
drop table if exists t1,t2; drop table if exists t1,t2,t3;
drop table if exists t1,t2; drop table if exists t1,t2,t3;
CREATE TABLE t3 (dummy INT PRIMARY KEY) ENGINE = NDB;
DROP TABLE t3;
reset master; reset master;
reset master; reset master;
CREATE TABLE t2 (a INT PRIMARY KEY, b int) ENGINE = NDB; CREATE TABLE t2 (a INT PRIMARY KEY, b int) ENGINE = NDB;
......
...@@ -4,11 +4,18 @@ ...@@ -4,11 +4,18 @@
--disable_warnings --disable_warnings
connection server2; connection server2;
drop table if exists t1,t2; drop table if exists t1,t2,t3;
connection server1; connection server1;
drop table if exists t1,t2; drop table if exists t1,t2,t3;
--enable_warnings --enable_warnings
# Dummy table create/drop to avoid a race where table is created
# before event subscription is set up, causing test failure (BUG#20677).
connection server2;
CREATE TABLE t3 (dummy INT PRIMARY KEY) ENGINE = NDB;
connection server1;
DROP TABLE t3;
# reset for test # reset for test
connection server1; connection server1;
reset master; reset master;
......
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