mariadb/mysql-test/suite/galera/t/mdev-26175.test
Jan Lindström f83b7ae13d MDEV-26175 : Assertion `! thd->in_sub_stmt' failed in bool trans_rollback_stmt(THD*)
If we are inside stored function or trigger we should not commit
or rollback current statement transaction.

Signed-off-by: Julius Goryavsky <julius.goryavsky@mariadb.com>
2023-04-11 09:07:33 +02:00

27 lines
680 B
Text

--source include/galera_cluster.inc
--source include/have_innodb.inc
#
# MDEV-26175 : Assertion `! thd->in_sub_stmt' failed in bool trans_rollback_stmt(THD*)
#
--connection node_1
SET sql_mode="no_zero_date";
SET GLOBAL wsrep_max_ws_rows=1;
CREATE TABLE t2 (a INT);
CREATE TABLE t1 (a INT NOT NULL PRIMARY KEY) ENGINE=InnoDB;
CREATE TRIGGER tgr BEFORE INSERT ON t1 FOR EACH ROW INSERT INTO t2 VALUES (0);
--error ER_ERROR_DURING_COMMIT
INSERT INTO t1 VALUES (0),(1);
SELECT * FROM t1;
SELECT * FROM t2;
--connection node_2
SELECT * FROM t1;
SELECT * FROM t2;
--connection node_1
SET sql_mode=DEFAULT;
SET GLOBAL wsrep_max_ws_rows=DEFAULT;
DROP TRIGGER tgr;
DROP TABLE t1, t2;