mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
386ac12a48
Using ROLLBACK with `completion_type = CHAIN` result in start of transaction and implicit commit before previous WSREP internal data is cleared. Reviewed-by: Jan Lindström <jan.lindstrom@mariadb.com>
9 lines
187 B
Text
9 lines
187 B
Text
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;
|