Skip to content

Commit

Permalink
Fix galera_admin test
Browse files Browse the repository at this point in the history
Patch credit Jan
  • Loading branch information
mariadb-SachinSetiya committed Mar 21, 2017
1 parent b22026d commit 656d0f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysql-test/suite/galera/t/galera_admin.test
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ ANALYZE TABLE t1, t2;
OPTIMIZE TABLE t1, t2;

--connection node_2
--let $wait_condition = SELECT VARIABLE_VALUE = $wsrep_last_committed_before + 1 FROM INFORMATION_SCHEMA.SESSION_STATUS WHERE VARIABLE_NAME = 'wsrep_last_committed'
--let $wait_condition = SELECT VARIABLE_VALUE >= $wsrep_last_committed_before + 1 FROM INFORMATION_SCHEMA.SESSION_STATUS WHERE VARIABLE_NAME = 'wsrep_last_committed'
--source include/wait_condition.inc


Expand All @@ -69,7 +69,7 @@ OPTIMIZE TABLE t1, t2;
REPAIR TABLE x1, x2;

--connection node_2
--let $wait_condition = SELECT VARIABLE_VALUE = $wsrep_last_committed_before + 1 FROM INFORMATION_SCHEMA.SESSION_STATUS WHERE VARIABLE_NAME = 'wsrep_last_committed'
--let $wait_condition = SELECT VARIABLE_VALUE >= $wsrep_last_committed_before + 1 FROM INFORMATION_SCHEMA.SESSION_STATUS WHERE VARIABLE_NAME = 'wsrep_last_committed'
--source include/wait_condition.inc


Expand Down

0 comments on commit 656d0f1

Please sign in to comment.