Fix Galera results

This commit is contained in:
Marko Mäkelä 2019-03-04 16:21:16 +02:00
parent 4ca2079142
commit 4fbf86454f
2 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@ connection node_1;
SET @@debug_dbug = "d,sync.wsrep_before_mdl_wait";
SELECT * FROM t2;;
connection node_1a;
SET @@debug_dbug = "d,sync.wsrep_after_BF_victim_lock";
connection node_2;
UPDATE t1 SET f2 = 'c' WHERE f1 = 1;
connection node_1a;

View File

@ -41,8 +41,9 @@ connection node_1;
INSERT INTO t1 VALUES (5);
connection node_2;
SELECT MAX(id) FROM t1 ;
SET GLOBAL debug_dbug = "";
connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2;
connection node_2a;
SET GLOBAL debug_dbug = "";
SET DEBUG_SYNC = "now SIGNAL signal.wsrep_apply_cb";
connection node_2;
MAX(id)