mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 02:30:06 +01:00
069139a549
extra2_read_len resolved by keeping the implementation
in sql/table.cc by exposed it for use by ha_partition.cc
Remove identical implementation in unireg.h
(ref: bfed2c7d57
)
30 lines
668 B
Text
30 lines
668 B
Text
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;
|