Skip to content
Permalink
Browse files
MDEV-23593 : galera_3nodes.GCF-376 MTR failed: Table 'test.t1' doesn'…
…t exist

Add wait_condition to make sure table is there.
  • Loading branch information
Jan Lindström committed Sep 9, 2020
1 parent d252f44 commit e17d0eb
Showing 1 changed file with 3 additions and 0 deletions.
@@ -17,6 +17,9 @@
CREATE TABLE test.t1 (f1 INTEGER PRIMARY KEY, f2 CHAR(1)) ENGINE=InnoDB;

--connection node_2
--let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 't1';
--source include/wait_condition.inc

SET GLOBAL wsrep_on=OFF;
INSERT INTO t1 VALUES (1, 'a');
SET GLOBAL wsrep_on=ON;

0 comments on commit e17d0eb

Please sign in to comment.