mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03: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
61 lines
2.1 KiB
Plaintext
61 lines
2.1 KiB
Plaintext
create table t1 (f1 int primary key) engine=innodb;
|
|
create table t2 (f2 int primary key) engine=innodb;
|
|
create table t3 (f3 int primary key, foreign key (f3) references t2(f2)) engine=innodb;
|
|
insert into t1 values (1),(2),(3),(4),(5);
|
|
insert into t2 values (1),(2),(3),(4),(5);
|
|
insert into t3 values (1),(2),(3),(4),(5);
|
|
connect con1,localhost,root;
|
|
set debug_sync='alter_table_before_rename_result_table signal g1 wait_for g2';
|
|
alter table t2 add constraint foreign key (f2) references t1(f1) on delete cascade on update cascade;
|
|
connection default;
|
|
set debug_sync='before_execute_sql_command wait_for g1';
|
|
update t1 set f1 = f1 + 100000 limit 2;
|
|
connect con2,localhost,root;
|
|
kill query UPDATE;
|
|
disconnect con2;
|
|
connection default;
|
|
ERROR 70100: Query execution was interrupted
|
|
set debug_sync='now signal g2';
|
|
connection con1;
|
|
show create table t2;
|
|
Table Create Table
|
|
t2 CREATE TABLE `t2` (
|
|
`f2` int(11) NOT NULL,
|
|
PRIMARY KEY (`f2`),
|
|
CONSTRAINT `1` FOREIGN KEY (`f2`) REFERENCES `t1` (`f1`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci
|
|
disconnect con1;
|
|
connection default;
|
|
select * from t2 where f2 not in (select f1 from t1);
|
|
f2
|
|
select * from t3 where f3 not in (select f2 from t2);
|
|
f3
|
|
drop table t3;
|
|
drop table t2;
|
|
drop table t1;
|
|
set debug_sync='reset';
|
|
#
|
|
# MDEV-16060 - InnoDB: Failing assertion: ut_strcmp(index->name, key->name)
|
|
#
|
|
CREATE TABLE t1 (`pk` INT PRIMARY KEY) ENGINE=InnoDB;
|
|
CREATE TABLE t2 LIKE t1;
|
|
FLUSH TABLES;
|
|
SET debug_sync='alter_table_intermediate_table_created SIGNAL ready WAIT_FOR go';
|
|
ALTER TABLE t1 ADD FOREIGN KEY(pk) REFERENCES t2(pk) ON UPDATE CASCADE;
|
|
connect con1, localhost, root;
|
|
SET debug_sync='now WAIT_FOR ready';
|
|
SET lock_wait_timeout=0;
|
|
UPDATE t2 SET pk=10 WHERE pk=1;
|
|
ERROR HY000: Lock wait timeout exceeded; try restarting transaction
|
|
PREPARE stmt FROM 'UPDATE t2 SET pk=10 WHERE pk=1';
|
|
DEALLOCATE PREPARE stmt;
|
|
SET debug_sync='now SIGNAL go';
|
|
connection default;
|
|
disconnect con1;
|
|
connection default;
|
|
SET debug_sync='reset';
|
|
SHOW OPEN TABLES FROM test;
|
|
Database Table In_use Name_locked
|
|
test t2 0 0
|
|
DROP TABLE t1, t2;
|