diff options
| author | Julius Goryavsky <julius.goryavsky@mariadb.com> | 2020-06-17 14:18:02 +0200 |
|---|---|---|
| committer | Julius Goryavsky <julius.goryavsky@mariadb.com> | 2020-06-17 14:18:02 +0200 |
| commit | 4e9baee3dccd9e014530d017d39e54cc5758bace (patch) | |
| tree | 03134ac2ea17b1c5a68574ba68463eff7569e51f | |
| parent | bd62a636a42f1486437cbed21198315f44d9e7b6 (diff) | |
| download | mariadb-git-10.5-MDEV-22922.tar.gz | |
MDEV-22922: galera_ftwrl_drain test failedbb-10.5-MDEV-2292210.5-MDEV-22922
A new state has been added to the wait condition,
which eliminates the error during the test.
| -rw-r--r-- | mysql-test/suite/galera/t/galera_ftwrl_drain.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/galera/t/galera_ftwrl_drain.test b/mysql-test/suite/galera/t/galera_ftwrl_drain.test index ee64e147f65..c8cdda5d624 100644 --- a/mysql-test/suite/galera/t/galera_ftwrl_drain.test +++ b/mysql-test/suite/galera/t/galera_ftwrl_drain.test @@ -39,7 +39,7 @@ SELECT COUNT(*) = 0 FROM t1; --connection node_2 --sleep 1 ---let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE STATE = 'Init' AND INFO = 'FLUSH TABLES WITH READ LOCK' +--let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.PROCESSLIST WHERE (STATE = 'Init' OR STATE = 'starting') AND INFO = 'FLUSH TABLES WITH READ LOCK' --source include/wait_condition.inc --source include/galera_clear_sync_point.inc |
