[MDEV-23950] Renaming a column that is used as a foreign key throws an error Created: 2020-10-13  Updated: 2020-10-13  Resolved: 2020-10-13

Status: Closed
Project: MariaDB Server
Component/s: N/A
Affects Version/s: 10.5.4, 10.5.5, 10.5.6
Fix Version/s: N/A

Type: Bug Priority: Minor
Reporter: Alexander Karlstad Assignee: Unassigned
Resolution: Duplicate Votes: 2
Labels: None
Environment:

Docker, mariadb/latest


Attachments: Text File mariadb-v10.5.6-variables.txt    
Issue Links:
Duplicate
duplicates MDEV-22775 [HY000][1553] Changing name of primar... Closed

 Description   

Renaming a column (usually the primary key) that is used as a foreign key in another table with ALTER TABLE syntax (not the new RENAME COLUMN syntax from 10.5.2) causes a Cannot drop index 'PRIMARY': needed in a foreign key constraint error.

For example, say you have these two tables:

create table `test` (
	`testId` int unsigned not null auto_increment primary key,
	`name` varchar(255) not null
);
 
create table `test_ref` (
	`id` int unsigned not null auto_increment primary key,
	`refId` int unsigned not null,
	`name` varchar(255) not null
);

And you add a foreign key constraint:

alter table `test_ref`
add constraint `test_ref_id`
foreign key (`refId`)
references `test` (`testId`);

And then try to rename test.testId to test.id with this syntax:

ALTER TABLE test
CHANGE testId id INT UNSIGNED AUTO_INCREMENT NOT NULL;

You will get the error mentioned.

Turning off foreign key checks before and after this alter statement will make it work though, and from what I can tell the references in information_schema.KEY_COLUMN_USAGE is correctly updated, but it does not feel right.

Also, if using the more recent RENAME COLUMN syntax, the change goes through without any errors. The problem is that this syntax is fairly new and likely not implemented in a lot of libraries yet, like doctrine/dbal for instance.



 Comments   
Comment by Alice Sherepa [ 2020-10-13 ]

it looks like the same problem as MDEV-22775. please provide the output of SHOW variables LIKE 'collation%';

Comment by Alexander Karlstad [ 2020-10-13 ]

it looks like the same problem as MDEV-22775. please provide the output of SHOW variables LIKE 'collation%';

I agree, it does seem like the same problem.

My output:

MariaDB [(none)]> show variables like 'collation%';
+----------------------+--------------------+
| Variable_name        | Value              |
+----------------------+--------------------+
| collation_connection | utf8mb4_general_ci |
| collation_database   | utf8mb4_general_ci |
| collation_server     | utf8mb4_general_ci |
+----------------------+--------------------+

Comment by Alexander Karlstad [ 2020-10-13 ]

I have attached the output of

SHOW VARIABLES

in its entirety to this issue now by the way.

Comment by Alice Sherepa [ 2020-10-13 ]

Thanks! Let's track further progress in MDEV-22775

Generated at Thu Feb 08 09:26:17 UTC 2024 using Jira 8.20.16#820016-sha1:9d11dbea5f4be3d4cc21f03a88dd11d8c8687422.