-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Improve formatting of logical plans containing subqueries #2899
Conversation
@avantgardnerio This might help simplify some of your tests |
LogicalPlan::Projection(Projection { .. }) => { | ||
self.visit_all_inputs(visitor)? | ||
} | ||
LogicalPlan::Filter(Filter { .. }) => self.visit_all_inputs(visitor)?, |
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.
This is the main change. We now visit all inputs, including subqueries. I have only implemented this for Projection
and Filter
in this PR.
Codecov Report
@@ Coverage Diff @@
## master #2899 +/- ##
==========================================
- Coverage 85.34% 85.34% -0.01%
==========================================
Files 276 276
Lines 49294 49322 +28
==========================================
+ Hits 42071 42092 +21
- Misses 7223 7230 +7
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.
This looks very helpful!
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.
Nice
Benchmark runs are scheduled for baseline = 6a5de4f and contender = fd64e6f. fd64e6f is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Which issue does this PR close?
Closes #2898
Rationale for this change
Before:
After
What changes are included in this PR?
Are there any user-facing changes?
Yes, plans look different