summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/galera/t/MDEV-22055.test
blob: ae29c456bf067dccaed0510d15749fb8beeb3be2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--source include/galera_cluster.inc

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;

--connection node_2
SET SESSION wsrep_sync_wait=15;
SELECT * FROM t1;

--connection node_1
DROP TABLE t1;