planner, expression: remove TblID2Handle from Schema#11152
Merged
Conversation
Member
Author
|
There're some small things can be splitted as small PRs. I'll do it later. |
Codecov Report
@@ Coverage Diff @@
## master #11152 +/- ##
===========================================
Coverage 82.1563% 82.1563%
===========================================
Files 433 433
Lines 96303 96303
===========================================
Hits 79119 79119
Misses 11713 11713
Partials 5471 5471 |
Member
Author
|
/run-all-tests |
winoros
commented
Jul 10, 2019
Member
Author
|
/run-all-tests |
lzmhhh123
reviewed
Jul 16, 2019
alivxxx
reviewed
Jul 22, 2019
Contributor
|
@winoros please resolve conflicts and fix CI. |
7e26af5 to
c9d49fb
Compare
Member
Author
|
/run-all-tests |
lzmhhh123
reviewed
Jul 31, 2019
| } | ||
| } | ||
|
|
||
| func (p *PointGetPlan) findHandleCol() *expression.Column { |
Contributor
There was a problem hiding this comment.
It's very same as DataSource.getPKIsHandleCol. Can we merge them?
alivxxx
reviewed
Aug 1, 2019
Member
|
@winoros Please fix CI to make this PR reviewable. |
09480e3 to
8544cb9
Compare
lzmhhh123
reviewed
Aug 14, 2019
alivxxx
reviewed
Aug 14, 2019
Contributor
|
/run-all-tests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What problem does this PR solve?
TblID2Handlecan just be maintained when building plan. Only be held by just part of plan.Not all of them need to hold it.
So remove it from
Schemastruct.What is changed and how it works?
Use a stack to maintain it when building plan. And then let speficific plan hold it.
Check List
Tests
Code changes