summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/MDEV-22055.result
blob: 651f8501a0ab7b04a0d8da0029b855a0fdc19293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
connection node_2;
connection node_1;
ROLLBACK AND CHAIN;
CREATE TABLE t1(a int not null primary key) engine=innodb;
INSERT INTO t1 values (1);
BEGIN;
INSERT INTO t1 values (2);
ROLLBACK AND CHAIN;
SELECT * FROM t1;
a
1
connection node_2;
SET SESSION wsrep_sync_wait=15;
SELECT * FROM t1;
a
1
connection node_1;
DROP TABLE t1;