summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/MDEV-15443.result
blob: 21332b372e8e602a411bcbe9703e5bf0352a9b0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
connection node_2;
connection node_1;
CREATE TABLE t1 (f1 INT PRIMARY KEY) ENGINE=InnoDB;
INSERT INTO t1 VALUES (1);
connection node_2;
SELECT * FROM t1;
f1
1
SET GLOBAL wsrep_cluster_address='';
SET SESSION wsrep_on=0;
INSERT INTO t1 VALUES (2);
DELETE FROM t1 WHERE f1 = 2;
connection node_1;
INSERT INTO t1 VALUES (2);
connection node_2;
connection node_1;
DROP TABLE t1;