-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
ddl: fix drop index failed when index contain auto_increment column and the auto_increment column is primary key #15861
ddl: fix drop index failed when index contain auto_increment column and the auto_increment column is primary key #15861
Conversation
…nd the auto_increment column is primary key Signed-off-by: crazycs520 <crazycs520@gmail.com>
Codecov Report
@@ Coverage Diff @@
## master #15861 +/- ##
===========================================
Coverage 80.5901% 80.5901%
===========================================
Files 505 505
Lines 135529 135529
===========================================
Hits 109223 109223
Misses 17821 17821
Partials 8485 8485 |
/run-all-tests |
LGTM |
Signed-off-by: crazycs520 <crazycs520@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Your auto merge job has been accepted, waiting for 15907, 15845, 15758, 15956, 15776, 15889, 15926, 15889 |
/run-all-tests |
/run-cherry-picker |
Signed-off-by: sre-bot <sre-bot@pingcap.com>
cherry pick to release-2.1 in PR #16007 |
…nd the auto_increment column is primary key (pingcap#15861)
cherry pick to release-3.0 in PR #16008 |
…nd the auto_increment column is primary key (pingcap#15861)
cherry pick to release-3.1 in PR #16009 |
…nd the auto_increment column is primary key (pingcap#15861)
cherry pick to release-4.0 in PR #16010 |
…nd the auto_increment column is primary key (pingcap#15861) Signed-off-by: crazycs520 <crazycs520@gmail.com>
Signed-off-by: crazycs520 crazycs520@gmail.com
What problem does this PR solve?
Before this PR:
What is changed and how it works?
Fix DDL drop index with
auto_increament
check function bug.Related changes
Check List
Tests
Side effects
Release note
Fix issue of drop index failed when index contain auto_increment column and the auto_increment column is the primary key.