Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename column fail when doing column type change concurrently #31075

Closed
wjhuang2016 opened this issue Dec 28, 2021 · 3 comments · Fixed by #32993
Closed

rename column fail when doing column type change concurrently #31075

wjhuang2016 opened this issue Dec 28, 2021 · 3 comments · Fixed by #32993
Assignees
Labels
affects-5.1 This bug affects 5.1.x versions. affects-5.2 This bug affects 5.2.x versions. affects-5.3 This bug affects 5.3.x versions. severity/major sig/sql-infra SIG: SQL Infra type/bug The issue is confirmed as a bug.

Comments

@wjhuang2016
Copy link
Member

Bug Report

Please answer these questions before submitting your issue. Thanks!

1. Minimal reproduce step (Required)

create table t(a int, b int);
insert into t values (1, 1);
alter table t change column b b double; /* in session 1 */
alter table t rename column b to c;     /* in session 2 */

2. What did you expect to see? (Required)

No error.

3. What did you see instead (Required)

origin_img_v2_056ed67a-b47c-4be5-9088-b4ce11349b1g

4. What is your TiDB version? (Required)

mater

@wjhuang2016 wjhuang2016 added type/bug The issue is confirmed as a bug. affects-5.1 This bug affects 5.1.x versions. affects-5.2 This bug affects 5.2.x versions. affects-5.3 This bug affects 5.3.x versions. severity/major sig/sql-infra SIG: SQL Infra labels Dec 28, 2021
@yudongusa
Copy link

@bb7133 assign to you for now.

@xhebox
Copy link
Contributor

xhebox commented Jan 26, 2022

@wjhuang2016 Is there any plan to fix it recently?

@wjhuang2016
Copy link
Member Author

No

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
affects-5.1 This bug affects 5.1.x versions. affects-5.2 This bug affects 5.2.x versions. affects-5.3 This bug affects 5.3.x versions. severity/major sig/sql-infra SIG: SQL Infra type/bug The issue is confirmed as a bug.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants