summaryrefslogtreecommitdiff
path: root/mysql-test/suite/galera/r/MDEV-30804.result
blob: 2bf323d19f84eec0cbf540fac1fed63dd57507b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
connection node_2;
connection node_1;
CREATE TABLE t (a INT) ENGINE=Aria;
CREATE TABLE t1 (a INT) ENGINE=InnoDB;
START TRANSACTION;
INSERT INTO t VALUES ('1');
INSERT INTO t1 VALUES ('1');
COMMIT;
ERROR HY000: Transactional commit not supported by involved engine(s)
DROP TABLE t;
DROP TABLE t1;