-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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 the parallel problem of "set default value" and other DDL #11341
Conversation
Codecov Report
@@ Coverage Diff @@
## master #11341 +/- ##
===============================================
- Coverage 81.4477% 81.241% -0.2068%
===============================================
Files 423 423
Lines 90884 90165 -719
===============================================
- Hits 74023 73251 -772
- Misses 11577 11602 +25
- Partials 5284 5312 +28 |
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
/run-all-tests |
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
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
cherry pick to release-2.1 failed |
cherry pick to release-3.0 in PR #11346 |
What problem does this PR solve?
The problem occurs as follows:
Then execute the following DDL statements in parallel:
Finally execute the following statement:
We will get the error as follows:
What is changed and how it works?
We don't change the offset when executing the DDL of
alter table .. set default
.Check List
Tests
Related changes