mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
514b305dfb
The MDEV-17262 commit 26432e49d3
was skipped. In Galera 4, the implementation would seem to require
changes to the streaming replication.
In the tests archive.rnd_pos main.profiling, disable_ps_protocol
for SHOW STATUS and SHOW PROFILE commands until MDEV-18974
has been fixed.
21 lines
518 B
Text
21 lines
518 B
Text
connection node_2;
|
|
connection node_1;
|
|
connection node_1;
|
|
connection node_2;
|
|
connection node_1;
|
|
SET GLOBAL wsrep_provider_options = 'pc.ignore_sb=true';
|
|
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
|
|
connection node_2;
|
|
Killing server ...
|
|
connection node_1;
|
|
INSERT INTO t1 VALUES (1);
|
|
connection node_2;
|
|
connection node_2a;
|
|
SELECT COUNT(*) FROM t1;
|
|
COUNT(*)
|
|
1
|
|
SELECT VARIABLE_VALUE = 2 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_cluster_size';
|
|
VARIABLE_VALUE = 2
|
|
1
|
|
connection node_1;
|
|
DROP TABLE t1;
|