Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Not a Bug
-
11.4.2
-
None
-
11.4.2-MariaDB-deb12
Description
CREATE TABLE `tab1` ( |
`tab1id` int(10) unsigned NOT NULL AUTO_INCREMENT, |
`tab1desc` varchar(60) NOT NULL, |
PRIMARY KEY (`tab1id`) |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; |
|
CREATE TABLE `tab2` ( |
`tab2id` int(10) unsigned NOT NULL AUTO_INCREMENT, |
`tab1id` int(10) unsigned DEFAULT NULL, |
`tab2desc` varchar(60) NOT NULL, |
PRIMARY KEY (`tab2id`), |
KEY `idxtab2tab1id` (`tab1id`), |
CONSTRAINT `fktab2tab1id` FOREIGN KEY (`tab1id`) REFERENCES `tab1` (`tab1id`) |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin; |
dropping tab1id failed:
alter table tab2 drop COLUMN tab1id; |
Cannot drop index 'idxtab2tab1id': needed in a foreign key constraint
|
I can resolve by drop constraint first, but it is not fine
I don't think it's a bug. What behavior do you prefer, for a foreign key to be dropped automatically? Technically, SQL Standard has this behavior, but one needs to use special syntax to invoke it,
MariaDB doesn't support this. And when CASCADE is not specified, the foreign key constraint should not be automatically dropped.
But you can drop both in the same statement, like in