-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Implement tree explain for AggregateExec #15103
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
Conversation
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.
Thank you for this contribution @zebsme
let e = e.to_string(); | ||
if &e != alias { | ||
format!("{e} as {alias}") | ||
} else { | ||
e | ||
} |
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.
Could you extract this logic? It would greatly increase readability.
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.
Thank you @Weijun-H -- amazing suggestion :)
and already updated
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.
I also tested that these tests pass on main after merging up |
Which issue does this PR close?
tree
explain forAggregateExec
#15024SQL EXPLAIN
Tree Rendering #14914What changes are included in this PR?
Are these changes tested?
Yes
Are there any user-facing changes?
No