Commit ef0dc50c authored by Jan Lindström's avatar Jan Lindström

MDEV-26815 : galera.galera_ftwrl_drain fails with wrong errno 1146

Add wait_conditions to stabilize
parent 2bb8d7c2
...@@ -8,9 +8,9 @@ connection node_2; ...@@ -8,9 +8,9 @@ connection node_2;
SET SESSION wsrep_sync_wait = 0; SET SESSION wsrep_sync_wait = 0;
SET SESSION wsrep_on = 0; SET SESSION wsrep_on = 0;
SET SESSION wsrep_on = 1; SET SESSION wsrep_on = 1;
SELECT COUNT(*) = 0 FROM t1; SELECT COUNT(*) AS EXPECT_0 FROM t1;
COUNT(*) = 0 EXPECT_0
1 0
connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2; connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2;
connection node_2a; connection node_2a;
FLUSH TABLES WITH READ LOCK;; FLUSH TABLES WITH READ LOCK;;
...@@ -27,12 +27,12 @@ ERROR HY000: Lock wait timeout exceeded; try restarting transaction ...@@ -27,12 +27,12 @@ ERROR HY000: Lock wait timeout exceeded; try restarting transaction
connection node_2a; connection node_2a;
UNLOCK TABLES; UNLOCK TABLES;
connection node_2; connection node_2;
SELECT COUNT(*) = 1 FROM t1; SELECT COUNT(*) AS EXPECT_1 FROM t1;
COUNT(*) = 1 EXPECT_1
1 1
INSERT INTO t1 VALUES (3); INSERT INTO t1 VALUES (3);
connection node_1; connection node_1;
SELECT COUNT(*) = 2 FROM t1; SELECT COUNT(*) AS EXPECT_2 FROM t1;
COUNT(*) = 2 EXPECT_2
1 2
DROP TABLE t1; DROP TABLE t1;
...@@ -18,7 +18,8 @@ ...@@ -18,7 +18,8 @@
CREATE TABLE t1 (id INT PRIMARY KEY) ENGINE=InnoDB; CREATE TABLE t1 (id INT PRIMARY KEY) ENGINE=InnoDB;
--connection node_2 --connection node_2
--let $wait_condition = SELECT COUNT(*) = 1 FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME = 't1'
--source include/wait_condition.inc
--let $galera_sync_point = apply_monitor_slave_enter_sync --let $galera_sync_point = apply_monitor_slave_enter_sync
--source include/galera_set_sync_point.inc --source include/galera_set_sync_point.inc
...@@ -31,7 +32,7 @@ SET SESSION wsrep_sync_wait = 0; ...@@ -31,7 +32,7 @@ SET SESSION wsrep_sync_wait = 0;
# Wait until applier has blocked # Wait until applier has blocked
--source include/galera_wait_sync_point.inc --source include/galera_wait_sync_point.inc
SELECT COUNT(*) = 0 FROM t1; SELECT COUNT(*) AS EXPECT_0 FROM t1;
--connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2 --connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2
--connection node_2a --connection node_2a
...@@ -61,9 +62,11 @@ INSERT INTO t2 VALUES (2); ...@@ -61,9 +62,11 @@ INSERT INTO t2 VALUES (2);
UNLOCK TABLES; UNLOCK TABLES;
--connection node_2 --connection node_2
SELECT COUNT(*) = 1 FROM t1; --let $wait_condition = SELECT COUNT(*) = 1 FROM t1
--source include/wait_condition.inc
SELECT COUNT(*) AS EXPECT_1 FROM t1;
INSERT INTO t1 VALUES (3); INSERT INTO t1 VALUES (3);
--connection node_1 --connection node_1
SELECT COUNT(*) = 2 FROM t1; SELECT COUNT(*) AS EXPECT_2 FROM t1;
DROP TABLE t1; DROP TABLE t1;
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