Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.5.0, 10.5, 10.6, 10.7(EOL)
Description
Assertion failure i==j on ADD FOREIGN KEY
The following test case triggers a debug assertion failure during ALTER TABLE:
--source include/have_innodb.inc
|
CREATE TABLE t1(a INT PRIMARY KEY) ENGINE=InnoDB; |
CREATE TABLE t2(a INT PRIMARY KEY) ENGINE=InnoDB; |
ALTER TABLE t2 ADD FOREIGN KEY(a) REFERENCES t1; |
DROP TABLE t2, t1; |
10.5 f1acd9f14bd054b8d8d576c6fe567226c097132d |
mysqltest: At line 4: query 'ALTER TABLE t2 ADD FOREIGN KEY(a) REFERENCES t1' failed: 2013: Lost connection to MySQL server during query
|
...
|
mariadbd: /mariadb/10.5/storage/innobase/handler/ha_innodb.cc:12306: dberr_t create_table_info_t::create_foreign_keys(): Assertion `i == j' failed.
|
The reason appears to be that an empty column list will be passed for the REFERENCES t1. I would expect that the matching column names be looked up (in this case a) and their data type compatibility be checked before ha_innobase::create() is invoked.
Attachments
Issue Links
- is caused by
-
MDEV-20480 Obsolete internal parser for FK in InnoDB
-
- Closed
-
- relates to
-
MDEV-26554 Table-rebuilding DDL on parent table causes crash for INSERT into child table
-
- Closed
-
Activity
Field | Original Value | New Value |
---|---|---|
Link |
This issue is caused by |
Link |
This issue relates to |
Labels | regression-10.5 | foreign-keys regression-10.5 |
Workflow | MariaDB v3 [ 126218 ] | MariaDB v4 [ 143252 ] |
Description |
The following test case triggers a debug assertion failure during {{ALTER TABLE}}:
{code:sql} --source include/have_innodb.inc CREATE TABLE t1(a INT PRIMARY KEY) ENGINE=InnoDB; CREATE TABLE t2(a INT PRIMARY KEY) ENGINE=InnoDB; ALTER TABLE t2 ADD FOREIGN KEY(a) REFERENCES t1; DROP TABLE t2, t1; {code} {noformat:title=10.5 f1acd9f14bd054b8d8d576c6fe567226c097132d} mysqltest: At line 4: query 'ALTER TABLE t2 ADD FOREIGN KEY(a) REFERENCES t1' failed: 2013: Lost connection to MySQL server during query ... mariadbd: /mariadb/10.5/storage/innobase/handler/ha_innodb.cc:12306: dberr_t create_table_info_t::create_foreign_keys(): Assertion `i == j' failed. {noformat} The reason appears to be that an empty column list will be passed for the {{REFERENCES t1}}. I would expect that the matching column names be looked up (in this case {{a}}) and their data type compatibility be checked before {{ha_innobase::create()}} is invoked. |
Assertion failure i==j on ADD FOREIGN KEY
The following test case triggers a debug assertion failure during {{ALTER TABLE}}: {code:sql} --source include/have_innodb.inc CREATE TABLE t1(a INT PRIMARY KEY) ENGINE=InnoDB; CREATE TABLE t2(a INT PRIMARY KEY) ENGINE=InnoDB; ALTER TABLE t2 ADD FOREIGN KEY(a) REFERENCES t1; DROP TABLE t2, t1; {code} {noformat:title=10.5 f1acd9f14bd054b8d8d576c6fe567226c097132d} mysqltest: At line 4: query 'ALTER TABLE t2 ADD FOREIGN KEY(a) REFERENCES t1' failed: 2013: Lost connection to MySQL server during query ... mariadbd: /mariadb/10.5/storage/innobase/handler/ha_innodb.cc:12306: dberr_t create_table_info_t::create_foreign_keys(): Assertion `i == j' failed. {noformat} The reason appears to be that an empty column list will be passed for the {{REFERENCES t1}}. I would expect that the matching column names be looked up (in this case {{a}}) and their data type compatibility be checked before {{ha_innobase::create()}} is invoked. |
Summary | Assertion failure i==j on ADD FOREIGN KEY | Can't add foreign key with empty referenced columns list |
Status | Open [ 1 ] | In Progress [ 3 ] |
Status | In Progress [ 3 ] | In Review [ 10002 ] |
Assignee | Aleksey Midenkov [ midenok ] | Oleksandr Byelkin [ sanja ] |
Assignee | Oleksandr Byelkin [ sanja ] | Aleksey Midenkov [ midenok ] |
Status | In Review [ 10002 ] | Stalled [ 10000 ] |
Status | Stalled [ 10000 ] | In Progress [ 3 ] |
Fix Version/s | 10.5.14 [ 26809 ] | |
Fix Version/s | 10.6.6 [ 26811 ] | |
Fix Version/s | 10.7.2 [ 26813 ] | |
Fix Version/s | 10.8.1 [ 26815 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Fix Version/s | 10.6 [ 24028 ] | |
Fix Version/s | 10.7 [ 24805 ] | |
Resolution | Fixed [ 1 ] | |
Status | In Progress [ 3 ] | Closed [ 6 ] |
Please review bb-10.5-midenok