-
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
plan, executor: split selection to logical plan and physical plan. #5235
Conversation
747cdf9
to
0a24a66
Compare
plan/physical_plans.go
Outdated
@@ -387,11 +387,18 @@ func (p *PhysicalMergeJoin) Copy() PhysicalPlan { | |||
return &np | |||
} | |||
|
|||
// PhysicalSelection means a filter. |
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.
s/means/represents/
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.
fixed
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.
rest LGTM
plan/physical_plans.go
Outdated
@@ -387,11 +387,18 @@ func (p *PhysicalMergeJoin) Copy() PhysicalPlan { | |||
return &np | |||
} | |||
|
|||
// PhysicalSelection a filter. |
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.
unfinished comment?
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
I will change every plan to logical plan and physical plan.