-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-34952][SQL][FOLLOW-UP] DSv2 aggregate push down follow-up #33526
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
|
Kubernetes integration test starting |
|
Kubernetes integration test status success |
|
Test build #141663 has finished for PR 33526 at commit
|
21ef1a1 to
6e73fb3
Compare
|
cc @sunchao |
|
Kubernetes integration test starting |
|
Kubernetes integration test status success |
|
Kubernetes integration test starting |
|
Kubernetes integration test status success |
|
Test build #141674 has finished for PR 33526 at commit
|
|
Test build #141675 has finished for PR 33526 at commit
|
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.
shall we change the code style of groupByColumns as well?
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.
Sorry, the method was automatically collapsed into one single line in my IDE, I only saw one line there. I tried to be careful, but still missed this one.
83c9f5f to
d204505
Compare
|
Kubernetes integration test starting |
|
Kubernetes integration test status success |
|
Test build #141712 has finished for PR 33526 at commit
|
sunchao
left a 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 (non-binding) with one nit. Thanks @huaxingao !
| * be: grouping columns, aggregate columns (in the same order as the aggregate functions in | ||
| * the given Aggregation). | ||
| * | ||
| * Returns true if the aggregation can be pushed down to datasource. |
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.
nit: maybe "@return true if the aggregation can be pushed down to datasource. False otherwise."
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.
Done. Thanks!
|
Kubernetes integration test starting |
|
Kubernetes integration test status success |
|
Test build #141735 has finished for PR 33526 at commit
|
|
thanks, merging to master/3.2! |
### What changes were proposed in this pull request? update java doc, JDBC data source doc, address follow up comments ### Why are the changes needed? update doc and address follow up comments ### Does this PR introduce _any_ user-facing change? Yes, add the new JDBC option `pushDownAggregate` in JDBC data source doc. ### How was this patch tested? manually checked Closes #33526 from huaxingao/aggPD_followup. Authored-by: Huaxin Gao <[email protected]> Signed-off-by: Wenchen Fan <[email protected]> (cherry picked from commit c8dd97d) Signed-off-by: Wenchen Fan <[email protected]>
What changes were proposed in this pull request?
update java doc, JDBC data source doc, address follow up comments
Why are the changes needed?
update doc and address follow up comments
Does this PR introduce any user-facing change?
Yes, add the new JDBC option
pushDownAggregatein JDBC data source doc.How was this patch tested?
manually checked