summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera_3nodes_sr/r/GCF-606.result
blob: 775f7ee0412c402a213914c1d65661082c4e5616 (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
33
34
35
36
37
38
connection node_2;
connection node_1;
connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2;
connection node_1;
CREATE TABLE t1 (f1 INTEGER) ENGINE=InnoDB;
connection node_2;
SET SESSION wsrep_trx_fragment_size = 1;
SET AUTOCOMMIT=OFF;
START TRANSACTION;
INSERT INTO t1 VALUES (20);
INSERT INTO t1 VALUES (21);
INSERT INTO t1 VALUES (22);
INSERT INTO t1 VALUES (23);
INSERT INTO t1 VALUES (24);
connection node_1;
connection node_2a;
SET GLOBAL wsrep_provider_options='gmcast.isolate=1';
SET WSREP_ON=ON;
connection node_1;
connection node_2a;
SET GLOBAL wsrep_provider_options='gmcast.isolate=0';
connection node_1;
connection node_1;
SELECT COUNT(DISTINCT node_uuid) = 1 FROM mysql.wsrep_streaming_log;
COUNT(DISTINCT node_uuid) = 1
0
connection node_2;
COMMIT;
ERROR 40001: Deadlock found when trying to get lock; try restarting transaction
SELECT * FROM t1;
f1
COMMIT;
connection node_1;
SELECT * FROM t1;
f1
DROP TABLE t1;
connection node_2;
CALL mtr.add_suppression("WSREP: failed to send SR rollback for ");