mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
MDEV-15977 Assertion !thd->in_sub_stmt failed in trans_commit_stmt
This commit is contained in:
18
mysql-test/suite/sql_sequence/rebuild.test
Normal file
18
mysql-test/suite/sql_sequence/rebuild.test
Normal file
@@ -0,0 +1,18 @@
|
||||
--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;
|
||||
|
Reference in New Issue
Block a user