-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Implement tree explain for LocalLimitExec
#15232
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
|
||
query TT | ||
explain VERBOSE | ||
SELECT /*+ REPARTITION(4) */ * |
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.
do we need this hint here?
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.
yes, that was not necessary here, removed it
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 @shruti2522 🙏
12)└───────────────────────────┘ | ||
|
||
query TT | ||
explain VERBOSE SELECT * FROM limit_table LIMIT 10; |
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 does this use EXPLAIN VERBOSE
? All the rest of the queries in this file just use EXPLAIN
🤔
I think it would be better to do the same
explain VERBOSE SELECT * FROM limit_table LIMIT 10; | |
explain SELECT * FROM limit_table LIMIT 10; |
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 took the liberty of making this change and pushing to the branch
Thanks again @shruti2522 and @comphead |
Which issue does this PR close?
tree
explain forLocalLimitExec
#15025 .Rationale for this change
What changes are included in this PR?
Are these changes tested?
Yes
Are there any user-facing changes?