summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera_3nodes/r/GCF-363.result
diff options
context:
space:
mode:
authorJan Lindström <jan.lindstrom@mariadb.com>2021-08-20 12:54:53 +0300
committerJan Lindström <jan.lindstrom@mariadb.com>2021-09-03 09:07:03 +0300
commit1bc82aaf0a7746c0921a94034aff2d51f0d75cd0 (patch)
treeae9ebd0f09182fab0974fc78d6de1a00dea50900 /mysql-test/suite/galera_3nodes/r/GCF-363.result
parent21ce69123c130e170b3bc3892ec859e4bc1999ca (diff)
downloadmariadb-git-1bc82aaf0a7746c0921a94034aff2d51f0d75cd0.tar.gz
MDEV-26352 : Add new thread states for certain WSREP scenarios
This adds following new thread states: * waiting to execute in isolation - DDL is waiting to execute in TOI mode. * waiting for TOI DDL - some other statement is waiting for DDL to complete. * waiting for flow control - some statement is paused while flow control is in effect. * waiting for certification - the transaction is being certified.
Diffstat (limited to 'mysql-test/suite/galera_3nodes/r/GCF-363.result')
-rw-r--r--mysql-test/suite/galera_3nodes/r/GCF-363.result6
1 files changed, 5 insertions, 1 deletions
diff --git a/mysql-test/suite/galera_3nodes/r/GCF-363.result b/mysql-test/suite/galera_3nodes/r/GCF-363.result
index afab5012ee5..fbcbac3a398 100644
--- a/mysql-test/suite/galera_3nodes/r/GCF-363.result
+++ b/mysql-test/suite/galera_3nodes/r/GCF-363.result
@@ -1,5 +1,10 @@
connection node_2;
connection node_1;
+connect node_3, 127.0.0.1, root, , test, $NODE_MYPORT_3;
+connection node_1;
+connection node_2;
+connection node_3;
+connection node_1;
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY, f2 CHAR(1)) ENGINE=InnoDB;
connection node_1;
SET GLOBAL wsrep_on=OFF;
@@ -9,7 +14,6 @@ connection node_2;
SET GLOBAL wsrep_on=OFF;
INSERT INTO t1 VALUES (1, 'a');
SET GLOBAL wsrep_on=ON;
-connect node_3, 127.0.0.1, root, , test, $NODE_MYPORT_3;
connection node_3;
INSERT INTO t1 VALUES (1, 'b');
SET SESSION wsrep_sync_wait = 0;