-
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: Support the operation of adding multi-columns #15540
Conversation
Thanks for your contribution. If your PR get merged, you will be rewarded 2996 points. |
Codecov Report
@@ Coverage Diff @@
## master #15540 +/- ##
================================================
- Coverage 80.7828% 80.7032% -0.0796%
================================================
Files 504 504
Lines 137070 136489 -581
================================================
- Hits 110729 110151 -578
+ Misses 17854 17845 -9
- Partials 8487 8493 +6 |
@zimulala PTAL |
@gauss1314 |
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.
Do you want to support the statement like alter table t add column b int after a, add column c int after b;
? If necessary, please add some tests similar to this type of statement, otherwise, please add checks to prevent the execution of such statements.
PTAL @tangenta @crazycs520 @bb7133 |
Co-Authored-By: Lynn <zimu_xia@126.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
/run-all-tests |
@gauss1314 merge failed. |
/run-integration-copr-test |
/run-all-tests |
UCP #5092
What problem does this PR solve?
Issue Number: close #5092
What is changed and how it works?
Support add multi-columns :
Support drop multi-columns:
Check List
Tests