-
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: disallow alter table on view #8890
Conversation
f2e7520
to
afa59db
Compare
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.
reset LGTM
@AndrewDi Please address the comment, then the ci will be fixed. |
@crazycs520 @zimulala PTAL |
/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
@AndrewDi Please fix ci |
Codecov Report
@@ Coverage Diff @@
## master #8890 +/- ##
==========================================
+ Coverage 66.98% 67.15% +0.16%
==========================================
Files 372 372
Lines 76969 76949 -20
==========================================
+ Hits 51557 51672 +115
+ Misses 20799 20650 -149
- Partials 4613 4627 +14
Continue to review full report at Codecov.
|
/run-all-tests |
ddl/db_change_test.go
Outdated
@@ -847,7 +848,7 @@ func (s *testStateChangeSuite) TestParallelDDLBeforeRunDDLJob(c *C) { | |||
intercept := &ddl.TestInterceptor{} | |||
firstConnID := uint64(1) | |||
finishedCnt := int32(0) | |||
interval := 5 * time.Millisecond | |||
interval := 2 * time.Millisecond |
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.
Why change it?
PTAL @zimulala |
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
@zz-jason PTAL |
/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
@AndrewDi Please fix conflicts. |
/run-all-tests |
ba8258b
to
bcd086e
Compare
bcd086e
to
1055629
Compare
/run-all-tests |
What problem does this PR solve?
Modify
ALTER TABLE
to addTable Type
check,What is changed and how it works?
ref proposal Proposal: Implement View
Check List
Tests
This change is