mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
MDEV-17432 Assertion `lock_trx_has_sys_table_locks(trx) == 0' failed upon ALTER TABLE .. ADD FOREIGN KEY
- Fixed innodb.table_flags test case in release build.
This commit is contained in:
parent
f2c7972a3d
commit
157d3c3bc1
1 changed files with 5 additions and 0 deletions
|
@ -185,3 +185,8 @@ ib_logfile0
|
|||
ib_logfile1
|
||||
ibdata1
|
||||
sys_tables.bin
|
||||
call mtr.add_suppression("ERROR HY000: Can't create table `test`.`t1`");
|
||||
CREATE TABLE t1(f1 INT, f2 VARCHAR(1), KEY k1(f2),
|
||||
FULLTEXT KEY(f2),
|
||||
FOREIGN KEY (f2) REFERENCES t1(f3))ENGINE=InnoDB;
|
||||
ERROR HY000: Can't create table `test`.`t1` (errno: 150 "Foreign key constraint is incorrectly formed")
|
||||
|
|
Loading…
Reference in a new issue