mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
19 lines
493 B
Text
19 lines
493 B
Text
|
--source include/have_innodb.inc
|
||
|
|
||
|
--echo #
|
||
|
--echo # MDEV-15977 Assertion `! thd->in_sub_stmt' failed in trans_commit_stmt
|
||
|
--echo #
|
||
|
|
||
|
CREATE SEQUENCE s1 ENGINE=InnoDB;
|
||
|
ALTER TABLE s1 FORCE;
|
||
|
CREATE TABLE t1 (a INT) ENGINE=MyISAM;
|
||
|
CREATE TABLE t2 (b VARCHAR(64)) ENGINE=MyISAM;
|
||
|
CREATE TRIGGER tr1 BEFORE INSERT ON t1 FOR EACH ROW INSERT INTO t2 SELECT TABLE_NAME FROM INFORMATION_SCHEMA.PARTITIONS;
|
||
|
INSERT INTO t1 VALUES (1);
|
||
|
select * from t1;
|
||
|
select * from t2;
|
||
|
|
||
|
# Cleanup
|
||
|
DROP TABLE t1, t2, s1;
|
||
|
|