summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera_sr/r/galera_sr_shutdown_master.result
blob: 051b9d6b7ecd1e641204372abe17dbef61a431b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
connection node_2;
connection node_1;
connection node_1;
connection node_2;
connection node_2;
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) ENGINE = InnoDB;
SET AUTOCOMMIT=OFF;
SET SESSION wsrep_trx_fragment_size=1;
START TRANSACTION;
INSERT INTO t1 VALUES (1),(2),(3);
connection node_1;
connection node_2;
connection node_1;
SELECT COUNT(*) = 0 FROM mysql.wsrep_streaming_log;
COUNT(*) = 0
1
SELECT COUNT(*) = 0 FROM t1;
COUNT(*) = 0
1
connection node_2;
# restart
SELECT COUNT(*) = 0 FROM mysql.wsrep_streaming_log;
COUNT(*) = 0
1
INSERT INTO t1 VALUES (1),(2),(3);
connection node_1;
SELECT COUNT(*) = 3 FROM t1;
COUNT(*) = 3
1
DROP TABLE t1;
connection node_2;
CALL mtr.add_suppression("WSREP: Failed to replicate rollback fragment for ");