-
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 cancel add/drop partitioned table ddl job #8938
Conversation
Codecov Report
@@ Coverage Diff @@
## master #8938 +/- ##
==========================================
+ Coverage 67.06% 67.07% +<.01%
==========================================
Files 372 372
Lines 78026 78043 +17
==========================================
+ Hits 52332 52346 +14
- Misses 21016 21023 +7
+ Partials 4678 4674 -4
Continue to review full report at Codecov.
|
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.
Please handle the corresponding cancel job in convertJob2RollbackJob,
5270a65
to
2bb1280
Compare
@winkyao @zimulala @crazycs520 PTAL. |
9fdac9a
to
34f1a21
Compare
@zimulala @crazycs520 PTAL. |
@crazycs520 @winkyao @zimulala PTAL. |
@ciscoxll Please address comments. |
@zimulala @crazycs520 PTAL. |
a677bc3
to
f268550
Compare
@winkyao PTAL |
f268550
to
833f7ab
Compare
833f7ab
to
e491ceb
Compare
e491ceb
to
344f4be
Compare
@crazycs520 @zimulala PTAL. |
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
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 |
/run-unit-test |
What problem does this PR solve?
We can only cancel add partitioned table job when the job state is on JobStateNone , if the job status is JobStateDone or JobStateRunning, the job will not be canceled.
What is changed and how it works?
Only added tests.
Check List
Tests
This change is