I guess I’m first to post in 2012 so Happy New Year all blog readers !
Now back to HardCore MySQL business – foreign Keys. MySQL supported Foreign Keys for Innodb for many years, yet rudimentary support initially added in MySQL 3.23.44 have not been improved in new releases as much as I’d like. We still get cryptic error messages such as “ERROR 1025 (HY000): Error on rename of ‘./test/child’ to ‘./test/#sql2-496-40a5′ (errno: 152)” in many cases and foreign keys are still handled on storage engine level making them not working for partitioned tables as well as making foreign keys performed row by row which often can be very inefficient.
As results of Foreign Key limitations you might need to get rid of them, yet this leaves you up for a final bite – dropping foreign keys requires table rebuild. Yes you get it right even though Innodb is able to drop indexes without rebuilding table since MySQL 5.1 (Innodb Plugin) dropping foreign keys which should only require meta data change needs a table rebuild.
In some real life production cases you might find tables which are large enough it will range from inconvenient to not acceptable. As result you might have to resort to dirty solutions. Here is a real example. Assume you have parent and child tables and you want to archive some records from parent table which will make some children orphans. Right solution of course would b to update the children table first but it might be too expensive. MySQL Allows you for plenty of dirty tricks, and you can actually disable foreign keys to make it happen:
CREATE TABLE `parent` (
`parent_id` int(11) NOT NULL,
`v` varchar(10) DEFAULT NULL,
PRIMARY KEY (`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1CREATE TABLE `child` (
`parent_id` int(11) NOT NULL,
`v` varchar(10) DEFAULT NULL,
KEY `parent_id` (`parent_id`),
CONSTRAINT `child_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `parent` (`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1INSERT INTO parent(parent_id) VALUES(1,”");
INSERT INTO child(parent_id) VALUES(1,”");set foreign_key_checks=0;
delete from parent;
After these actions we have child table which points to non existing row in parent table. Such table however will behave a little bit funny when you will try to update data stored in it. If you do not change “parent_id” column you can update data just fine, however if you want to change the parent_id column, even if you change it to the same value it will not work. This can cause problems to Hibernate and other ORM based applications which often like to update all columns whenever they have changed or not:
mysql> set foreign_key_checks=1;
Query OK, 0 rows affected (0.00 sec)mysql> select * from child;
+———–+——+
| parent_id | v |
+———–+——+
| 1 | NULL |
+———–+——+
1 row in set (0.00 sec)mysql> update child set v=”aaa”;
Query OK, 1 row affected (0.04 sec)
Rows matched: 1 Changed: 1 Warnings: 0mysql> update child set parent_id=1 and v=’BBB’;
ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (`test`.`child`, CONSTRAINT `child_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `parent` (`parent_id`))
Renaming parent table (even with foreign_ley_checks=0) will update references to point to new table, while you can drop
Moreover Innodb is very protective when it comes to foreign constraints and DDL operations. Even if you have foreign keys disabled renaming parent table will have reference in child table updated to point to new table. However you can drop parent table without any errors, yet this will leave child table reference in fact and if you create the table with same name again it will need to be able to satisfy foreign key conditions (have column child table is referencing and have it of proper type and indexed):
mysql> set foreign_key_checks=0;
Query OK, 0 rows affected (0.00 sec)mysql> alter table parent rename parentx;
Query OK, 0 rows affected (0.05 sec)mysql> drop table parentx;
Query OK, 0 rows affected (0.61 sec)mysql> show create table child \G
*************************** 1. row ***************************
Table: child
Create Table: CREATE TABLE `child` (
`parent_id` int(11) NOT NULL,
`v` varchar(10) DEFAULT NULL,
KEY `parent_id` (`parent_id`),
CONSTRAINT `child_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `parentx` (`parent_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1
1 row in set (0.00 sec)mysql> create table parentx(i int) engine=innodb;
ERROR 1005 (HY000): Can’t create table ‘test.parentx’ (errno: 150)
Innodb will enforce foreign key constrains to non existing table the same way as when there are non existing rows – if you’re trying to change “parent_id” column in child table, even to same value you will get foreign key violation error.
So Innodb Foreign Keys are pretty good at keeping you hostage.
Do you have any better idea how to Hijack innodb Foreign Keys or drop them without rebuilding the table ?
PlanetMySQL Voting: Vote UP / Vote DOWN