mirror of
https://github.com/MariaDB/server.git
synced 2025-07-28 22:20:58 +02:00

Before MySQL 4.0.18, user-specified constraint names were ignored. Starting with MySQL 4.0.18, the specified constraint name was prepended with the schema name and '/'. Now we are transforming into a format where the constraint name is prepended with the dict_table_t::name and the impossible UTF-8 sequence 0xff. Generated constraint names will be ASCII decimal numbers. On upgrade, old FOREIGN KEY constraint names will be displayed without any schema name prefix. They will be updated to the new format on DDL operations. dict_foreign_t::sql_id(): Return the SQL constraint name without any schemaname/tablename\377 or schemaname/ prefix. row_rename_table_for_mysql(), dict_table_rename_in_cache(): Simplify the logic: Just rename constraints to the new format. dict_table_get_foreign_id(): Replaces dict_table_get_highest_foreign_id(). innobase_get_foreign_key_info(): Let my_error() refer to erroneous anonymous constraints as "(null)". row_delete_constraint(): Try to drop all 3 constraint name variants. Reviewed by: Thirunarayanan Balathandayuthapani Tested by: Matthias Leich
71 lines
2.7 KiB
Text
71 lines
2.7 KiB
Text
DROP TABLE IF EXISTS t1, t2;
|
|
CREATE TABLE t1 (a <INT_COLUMN>,
|
|
b <CHAR_COLUMN>,
|
|
<CUSTOM_INDEX> (a)
|
|
) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS>;
|
|
CREATE TABLE t2 (a <INT_COLUMN>,
|
|
b <CHAR_COLUMN>,
|
|
FOREIGN KEY (a) REFERENCES t1(a)
|
|
) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS>;
|
|
SHOW CREATE TABLE t2;
|
|
Table Create Table
|
|
t2 CREATE TABLE `t2` (
|
|
`a` int(11) DEFAULT NULL,
|
|
`b` char(8) DEFAULT NULL,
|
|
KEY `a` (`a`),
|
|
CONSTRAINT `1` FOREIGN KEY (`a`) REFERENCES `t1` (`a`)
|
|
) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
|
|
INSERT INTO t2 (a,b) VALUES (1,'a'),(2,'b');
|
|
ERROR 23000: Cannot add or update a child row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `1` FOREIGN KEY (`a`) REFERENCES `t1` (`a`))
|
|
INSERT INTO t1 (a,b) VALUES (1,'c'),(2,'d');
|
|
INSERT INTO t2 (a,b) VALUES (1,'a'),(2,'b');
|
|
UPDATE t2 SET a=a+1;
|
|
ERROR 23000: Cannot add or update a child row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `1` FOREIGN KEY (`a`) REFERENCES `t1` (`a`))
|
|
UPDATE t1 SET a=3 WHERE a=2;
|
|
ERROR 23000: Cannot delete or update a parent row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `1` FOREIGN KEY (`a`) REFERENCES `t1` (`a`))
|
|
DELETE FROM t1 WHERE a=2;
|
|
ERROR 23000: Cannot delete or update a parent row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `1` FOREIGN KEY (`a`) REFERENCES `t1` (`a`))
|
|
DELETE FROM t2 WHERE a=2;
|
|
SELECT a,b FROM t1;
|
|
a b
|
|
1 c
|
|
2 d
|
|
SELECT a,b FROM t2;
|
|
a b
|
|
1 a
|
|
DROP TABLE t1;
|
|
ERROR 23000: Cannot delete or update a parent row: a foreign key constraint fails
|
|
DROP TABLE t2;
|
|
CREATE TABLE t2 (a <INT_COLUMN>,
|
|
b <CHAR_COLUMN>,
|
|
FOREIGN KEY (a) REFERENCES t1(a)
|
|
ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS>;
|
|
SHOW CREATE TABLE t2;
|
|
Table Create Table
|
|
t2 CREATE TABLE `t2` (
|
|
`a` int(11) DEFAULT NULL,
|
|
`b` char(8) DEFAULT NULL,
|
|
KEY `a` (`a`),
|
|
CONSTRAINT `1` FOREIGN KEY (`a`) REFERENCES `t1` (`a`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=<STORAGE_ENGINE> DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
|
|
INSERT INTO t2 (a,b) VALUES (1,'a'),(2,'b'),(3,'c'),(4,'d');
|
|
ERROR 23000: Cannot add or update a child row: a foreign key constraint fails (`test`.`t2`, CONSTRAINT `1` FOREIGN KEY (`a`) REFERENCES `t1` (`a`) ON DELETE CASCADE ON UPDATE CASCADE)
|
|
INSERT INTO t1 (a,b) VALUES (3,'a'),(4,'a');
|
|
INSERT INTO t2 (a,b) VALUES (1,'a'),(2,'b'),(3,'c'),(4,'d'),(4,'e'),(3,'a');
|
|
UPDATE t1 SET a=a+1;
|
|
SELECT a,b FROM t2;
|
|
a b
|
|
5 a
|
|
5 a
|
|
5 b
|
|
5 c
|
|
5 d
|
|
5 e
|
|
DELETE FROM t1 WHERE b='a' LIMIT 2;
|
|
SELECT a,b FROM t2;
|
|
a b
|
|
TRUNCATE TABLE t1;
|
|
ERROR 42000: Cannot truncate a table referenced in a foreign key constraint (`test`.`t2`, CONSTRAINT `1` FOREIGN KEY (`a`) REFERENCES `test`.`t1` (`a`))
|
|
DROP TABLE t2;
|
|
DROP TABLE t1;
|