summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/MDEV-25740.result
blob: 5a4318a7f1923cc172e402cec811d2cff699268e (plain)
1
2
3
4
5
6
7
8
9
connection node_2;
connection node_1;
SET AUTOCOMMIT = OFF;
SET completion_type = CHAIN;
CREATE TABLE t1(f1 INT) ENGINE=InnoDB;
BEGIN;
INSERT INTO t1 VALUES (1);
ROLLBACK;
DROP TABLE t1;