diff options
author | Stepan Patryshev <stepan.patryshev@mariadb.com> | 2021-01-04 17:34:17 +0200 |
---|---|---|
committer | Stepan Patryshev <stepan.patryshev@mariadb.com> | 2021-01-04 17:34:17 +0200 |
commit | e337b60b3bc147a8c7185cc0093cea33da0e88a8 (patch) | |
tree | 21e0ac5ea64701f3d72979ac6d1c0ea0c6c5d697 | |
parent | 1bf9acceef252000618a137853638c612339024b (diff) | |
download | mariadb-git-bb-10.5-MDEV-24480.tar.gz |
MDEV-24480 Added wait condition to make sure table t1 is replicated to node_2.bb-10.5-MDEV-24480
-rw-r--r-- | mysql-test/suite/galera_3nodes/t/GCF-363.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/suite/galera_3nodes/t/GCF-363.test b/mysql-test/suite/galera_3nodes/t/GCF-363.test index c8ddea435a7..a65c42bcc5a 100644 --- a/mysql-test/suite/galera_3nodes/t/GCF-363.test +++ b/mysql-test/suite/galera_3nodes/t/GCF-363.test @@ -13,6 +13,9 @@ INSERT INTO t1 VALUES (1, 'a'); SET GLOBAL wsrep_on=ON; --connection node_2 +--let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.INNODB_SYS_TABLES WHERE NAME LIKE 'test/t1'; +--source include/wait_condition.inc + SET GLOBAL wsrep_on=OFF; INSERT INTO t1 VALUES (1, 'a'); SET GLOBAL wsrep_on=ON; |