summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/galera_kill_applier.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/galera/r/galera_kill_applier.result')
-rw-r--r--mysql-test/suite/galera/r/galera_kill_applier.result10
1 files changed, 8 insertions, 2 deletions
diff --git a/mysql-test/suite/galera/r/galera_kill_applier.result b/mysql-test/suite/galera/r/galera_kill_applier.result
index 25600744d73..78a91d2638f 100644
--- a/mysql-test/suite/galera/r/galera_kill_applier.result
+++ b/mysql-test/suite/galera/r/galera_kill_applier.result
@@ -1,20 +1,26 @@
connection node_2;
connection node_1;
connection node_2;
+SELECT @@wsrep_slave_threads;
+@@wsrep_slave_threads
+1
SET GLOBAL wsrep_slave_threads=2;
Got one of the listed errors
Got one of the listed errors
Got one of the listed errors
Got one of the listed errors
-SET GLOBAL wsrep_slave_threads=1;
+SET GLOBAL wsrep_slave_threads=DEFAULT;
connection node_1;
create table t1(a int not null primary key) engine=innodb;
insert into t1 values (1);
insert into t1 values (2);
connection node_2;
-set global wsrep_sync_wait=15;
+# Wait until one of the appliers has exited
select count(*) from t1;
count(*)
2
+SELECT @@wsrep_slave_threads;
+@@wsrep_slave_threads
+1
connection node_1;
drop table t1;