galera_ist_progress.result 892 Bytes
Newer Older
Monty's avatar
Monty committed
1
connection node_2;
2
SET GLOBAL wsrep_provider_options = 'gmcast.isolate = 1';
Monty's avatar
Monty committed
3 4
connection node_1;
connection node_2;
5 6
SET SESSION wsrep_on = OFF;
SET SESSION wsrep_on = ON;
Monty's avatar
Monty committed
7
connection node_1;
8 9 10 11 12 13 14 15 16 17 18
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);
Monty's avatar
Monty committed
19
connection node_2;
20
SET GLOBAL wsrep_provider_options = 'gmcast.isolate = 0';
Monty's avatar
Monty committed
21 22 23
connection node_1;
connection node_2;
connection node_1;
24 25 26
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]
Monty's avatar
Monty committed
27
connection node_1;
28
DROP TABLE t1;