Commit 451bd326 authored by Julius Goryavsky's avatar Julius Goryavsky

MDEV-22922: galera_ftwrl_drain test failed

A new state has been added to the wait condition,
which eliminates the error during the test.
parent e9f62228
......@@ -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
......
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