-
Notifications
You must be signed in to change notification settings - Fork 29k
[SPARK-17338][SQL][follow-up] add global temp view #15424
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
|
Test build #66701 has finished for PR 15424 at commit
|
b93841b to
9928616
Compare
|
Test build #66704 has finished for PR 15424 at commit
|
9928616 to
15efca6
Compare
| } | ||
|
|
||
| /** | ||
| * Drop a local temporary view. |
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.
explain what the return value means
| * Local temporary view is session-scoped. Its lifetime is the lifetime of the session that | ||
| * created it, i.e. it will be automatically dropped when the session terminates. It's not | ||
| * tied to any databases, i.e. we can't use `db1.view1` to reference a local temporary view. | ||
| * |
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.
can you add a line saying the return type was unit in Spark 2.0, but changed to boolean in Spark 2.1?
|
LGTM other than the two minor comments. We also need a Python API for this, don't we? |
|
LGTM pending Jenkins. |
|
Test build #66707 has finished for PR 15424 at commit
|
|
Test build #66720 has finished for PR 15424 at commit
|
|
merging to master! |
## What changes were proposed in this pull request? address post hoc review comments for apache#14897 ## How was this patch tested? N/A Author: Wenchen Fan <[email protected]> Closes apache#15424 from cloud-fan/global-temp-view.
What changes were proposed in this pull request?
address post hoc review comments for #14897
How was this patch tested?
N/A