-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-32564][SQL][TEST][FOLLOWUP] Re-enable TPCDSQuerySuite with empty tables #29391
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
|
|
||
| class TPCDSQueryWithStatsSuite extends TPCDSQuerySuite { | ||
|
|
||
| override def beforeAll(): Unit = { |
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.
indentation?
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.
oh, I missed...
|
Test build #127222 has finished for PR 29391 at commit
|
| SQLConf.PLAN_STATS_ENABLED.key -> "true", | ||
| SQLConf.JOIN_REORDER_ENABLED.key -> "true" | ||
| ) | ||
| val sqlConfgs: Seq[(String, String)] = Nil |
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.
BTW, this is not identical with the original status. I'm wondering if we don't need SQLConf.CROSS_JOINS_ENABLED.key -> "true" ? Previously, we had 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.
Yea, since it is enabled by default in 3.0+, I dropped it in the previous PR.
dongjoon-hyun
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.
+1, LGTM. Thanks, @maropu .
…ty tables ### What changes were proposed in this pull request? This is the follow-up PR of #29384 to address the cloud-fan comment: #29384 (comment) This PR re-enables `TPCDSQuerySuite` with empty tables for better test coverages. ### Why are the changes needed? For better test coverage. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Existing tests. Closes #29391 from maropu/SPARK-32564-FOLLOWUP. Authored-by: Takeshi Yamamuro <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]> (cherry picked from commit 1df855b) Signed-off-by: Dongjoon Hyun <[email protected]>
|
Merged to master/3.0. |
|
Thanks, @dongjoon-hyun ! |
|
Test build #127230 has finished for PR 29391 at commit
|
What changes were proposed in this pull request?
This is the follow-up PR of #29384 to address the @cloud-fan comment: #29384 (comment)
This PR re-enables
TPCDSQuerySuitewith empty tables for better test coverages.Why are the changes needed?
For better test coverage.
Does this PR introduce any user-facing change?
No.
How was this patch tested?
Existing tests.