mirror of
https://github.com/MariaDB/server.git
synced 2025-02-04 21:02:17 +01:00
210db2935c
Signed-off-by: Julius Goryavsky <julius.goryavsky@mariadb.com>
11 lines
296 B
Text
11 lines
296 B
Text
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;
|