-
Notifications
You must be signed in to change notification settings - Fork 28.5k
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
[SPARK-15232][SQL] Add subquery SQL building tests to LogicalPlanToSQLSuite #14383
Conversation
cc @hvanhovell and @rxin |
"mapjoin_subquery") | ||
} | ||
|
||
test("subq2") { |
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.
is there a more descriptive name?
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.
Sure. I actually just use the name from Hive suite for review.
I'll review this.
Test build #62936 has finished for PR 14383 at commit
|
Test build #62938 has finished for PR 14383 at commit
|
Test build #62941 has finished for PR 14383 at commit
|
Test build #62942 has finished for PR 14383 at commit
|
Hi, @rxin and @hvanhovell . |
Looks reasonable to me. Merging in master/2.0. |
…LSuite ## What changes were proposed in this pull request? We currently test subquery SQL building using the `HiveCompatibilitySuite`. The is not desired since SQL building is actually a part of `sql/core` and because we are slowly reducing our dependency on Hive. This PR adds the same tests from the whitelist of `HiveCompatibilitySuite` into `LogicalPlanToSQLSuite`. ## How was this patch tested? This adds more testcases. Pass the Jenkins tests. Author: Dongjoon Hyun <dongjoon@apache.org> Closes #14383 from dongjoon-hyun/SPARK-15232. (cherry picked from commit 5c2ae79) Signed-off-by: Reynold Xin <rxin@databricks.com>
Thank you for review and merging, @rxin . |
What changes were proposed in this pull request?
We currently test subquery SQL building using the
HiveCompatibilitySuite
. The is not desired since SQL building is actually a part ofsql/core
and because we are slowly reducing our dependency on Hive. This PR adds the same tests from the whitelist ofHiveCompatibilitySuite
intoLogicalPlanToSQLSuite
.How was this patch tested?
This adds more testcases. Pass the Jenkins tests.