mirror of
https://github.com/MariaDB/server.git
synced 2025-08-27 13:04:36 +03:00
The reason for this is to make all temporary file names similar and also to be able to figure out from where a #sql-xxx name orginates. New format is for most cases: '#sql-name-current_pid-thread_id[-increment]' Where name is one of subselect, alter, exchange, temptable or backup The exceptions are: ALTER PARTITION shadow files: '#sql-shadow-thread_id-'original_table_name' Names used with temp pool: '#sql-name-current_pid-pool_number'
7 lines
421 B
Plaintext
7 lines
421 B
Plaintext
call mtr.add_suppression("In ALTER TABLE .* has or is referenced in foreign key constraints which are not compatible with the new table definition.");
|
|
# restart
|
|
create table t1 (f1 integer primary key) engine innodb;
|
|
alter table t1 add constraint c1 foreign key (f1) references t1(f1);
|
|
ERROR HY000: Error on rename of '#sql-alter' to './test/t1' (errno: 150 "Foreign key constraint is incorrectly formed")
|
|
drop table t1;
|