mirror of
https://github.com/MariaDB/server.git
synced 2025-07-19 17:58:24 +02:00
19 lines
721 B
Text
19 lines
721 B
Text
SET GLOBAL wsrep_provider_options = 'gmcast.isolate = 1';
|
|
SET SESSION wsrep_on = OFF;
|
|
SET SESSION wsrep_on = ON;
|
|
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
|
|
INSERT INTO t1 VALUES (1);
|
|
INSERT INTO t1 VALUES (2);
|
|
INSERT INTO t1 VALUES (3);
|
|
INSERT INTO t1 VALUES (4);
|
|
INSERT INTO t1 VALUES (5);
|
|
INSERT INTO t1 VALUES (6);
|
|
INSERT INTO t1 VALUES (7);
|
|
INSERT INTO t1 VALUES (8);
|
|
INSERT INTO t1 VALUES (9);
|
|
INSERT INTO t1 VALUES (10);
|
|
SET GLOBAL wsrep_provider_options = 'gmcast.isolate = 0';
|
|
include/assert_grep.inc [Receiving IST: 11 writesets, seqnos]
|
|
include/assert_grep.inc [Receiving IST\.\.\. 0\.0% \( 0/11 events\) complete]
|
|
include/assert_grep.inc [Receiving IST\.\.\.100\.0% \(11/11 events\) complete]
|
|
DROP TABLE t1;
|