diff options
Diffstat (limited to 'mysql-test/suite/galera/r/galera_kill_applier.result')
-rw-r--r-- | mysql-test/suite/galera/r/galera_kill_applier.result | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/mysql-test/suite/galera/r/galera_kill_applier.result b/mysql-test/suite/galera/r/galera_kill_applier.result new file mode 100644 index 00000000..a47f486b --- /dev/null +++ b/mysql-test/suite/galera/r/galera_kill_applier.result @@ -0,0 +1,30 @@ +connection node_2; +connection node_1; +connection node_2; +SELECT @@wsrep_slave_threads; +@@wsrep_slave_threads +1 +SET GLOBAL wsrep_slave_threads=2; +KILL ID; +Got one of the listed errors +KILL QUERY ID; +Got one of the listed errors +KILL ID; +Got one of the listed errors +KILL QUERY ID; +Got one of the listed errors +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; +# 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; |