Uh oh!
There was an error while loading. Please reload this page.
[SPARK-27813][SQL] DataSourceV2: Add DropTable logical operation - #24686
[SPARK-27813][SQL] DataSourceV2: Add DropTable logical operation#24686jzhuge wants to merge 7 commits into
Conversation
SparkQA
commented
May 23, 2019
Test build #105716 has finished for PR 24686 at commit
|
jzhuge
commented
May 23, 2019
Split the SPARK-26946 commits into a separate PR #24689 |
Uh oh!
There was an error while loading. Please reload this page.
Making a few changes. Close it for now. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Treat it as catalog not found.
SparkQA
commented
May 27, 2019
Test build #105805 has finished for PR 24686 at commit
|
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
jzhuge
commented
May 29, 2019
No longer depend on #24689. |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
rdblue
commented
May 29, 2019
+1 overall, just one minor style problem with boolean args to fix. I think this is ready to go. You might also mention a couple of things in the PR description:
@cloud-fan, @dongjoon-hyun, could you review this DSv2 PR? I think it is ready to merge. |
dongjoon-hyun
commented
May 29, 2019
Thank you for pinging me, @rdblue . Yep. I'll take a look, too~ |
SparkQA
commented
May 29, 2019
Test build #105920 has finished for PR 24686 at commit
|
SparkQA
commented
May 29, 2019
Test build #105921 has finished for PR 24686 at commit
|
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
SparkQA
commented
May 30, 2019
Test build #105941 has finished for PR 24686 at commit
|
cloud-fan
commented
May 30, 2019
thanks, merging to master! |
jzhuge
commented
May 30, 2019
Thanks @rdblue@dongjoon-hyun@cloud-fan ! |
## What changes were proposed in this pull request? Support DROP TABLE from V2 catalogs. Move DROP TABLE into catalyst. Move parsing tests for DROP TABLE/VIEW to PlanResolutionSuite to validate existing behavior. Add new tests fo catalyst parser suite. Separate DROP VIEW into different code path from DROP TABLE. Move DROP VIEW into catalyst as a new operator. Add a meaningful exception to indicate view is not currently supported in v2 catalog. ## How was this patch tested? New unit tests. Existing unit tests in catalyst and sql core. Closesapache#24686 from jzhuge/SPARK-27813-pr. Authored-by: John Zhuge <jzhuge@apache.org> Signed-off-by: Wenchen Fan <wenchen@databricks.com>
What changes were proposed in this pull request?
Support DROP TABLE from V2 catalogs.
Move DROP TABLE into catalyst.
Move parsing tests for DROP TABLE/VIEW to PlanResolutionSuite to validate existing behavior.
Add new tests fo catalyst parser suite.
Separate DROP VIEW into different code path from DROP TABLE.
Move DROP VIEW into catalyst as a new operator.
Add a meaningful exception to indicate view is not currently supported in v2 catalog.
How was this patch tested?
New unit tests.
Existing unit tests in catalyst and sql core.