diff options
author | Jan Lindström <jan.lindstrom@mariadb.com> | 2018-04-09 07:49:00 +0300 |
---|---|---|
committer | Jan Lindström <jan.lindstrom@mariadb.com> | 2018-04-09 07:49:00 +0300 |
commit | fe61e287e952e47c9a2c317790b8e9324c5051b6 (patch) | |
tree | 4104836d47b8b1f9ea1a27649e437b9e10bac64a /mysql-test/suite/galera/r/lp1376747-2.result | |
parent | 767d6ce38cafd735aa70fcd6d6e4fa682d5548af (diff) | |
download | mariadb-git-fe61e287e952e47c9a2c317790b8e9324c5051b6.tar.gz |
MDEV-15810: Test failure on galera.lp1376747 and galera.lp1376747-2
Wait until create table is replicated before continuing.
Diffstat (limited to 'mysql-test/suite/galera/r/lp1376747-2.result')
-rw-r--r-- | mysql-test/suite/galera/r/lp1376747-2.result | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/suite/galera/r/lp1376747-2.result b/mysql-test/suite/galera/r/lp1376747-2.result index 3b8aee61ed2..0c91e10acd7 100644 --- a/mysql-test/suite/galera/r/lp1376747-2.result +++ b/mysql-test/suite/galera/r/lp1376747-2.result @@ -1,5 +1,8 @@ CREATE TABLE t1 (id INT PRIMARY KEY) ENGINE=InnoDB; INSERT INTO t1 VALUES (1); +SELECT NAME FROM INFORMATION_SCHEMA.INNODB_SYS_TABLES WHERE NAME LIKE 'test/t%'; +NAME +test/t1 FLUSH TABLES t1 FOR EXPORT; ALTER TABLE t1 ADD COLUMN f2 INTEGER; INSERT INTO t1 VALUES (2,3); |