[
https://issues.apache.org/jira/browse/SPARK-16937?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Hyukjin Kwon updated SPARK-16937:
---------------------------------
Labels: bulk-closed (was: )
> Confusing behaviors when View and Temp View sharing the same names
> ------------------------------------------------------------------
>
> Key: SPARK-16937
> URL: https://issues.apache.org/jira/browse/SPARK-16937
> Project: Spark
> Issue Type: Bug
> Components: SQL
> Affects Versions: 2.0.0
> Reporter: Xiao Li
> Priority: Major
> Labels: bulk-closed
>
> {noformat}
> sql(s"CREATE TEMPORARY VIEW $viewName AS SELECT * FROM $tabName WHERE
> ID < 3")
> sql(s"CREATE VIEW $viewName AS SELECT * FROM $tabName")
> // This returns the contents of the temp view.
> sql(s"select * from $viewName").show(false)
> // This returns the contents of the view.
> sql(s"select * from default.$viewName").show(false)
> // Below is to drop the temp view
> sql(s"DROP VIEW $viewName")
> // Both results are non-temp view
> sql(s"select * from $viewName").show(false)
> sql(s"select * from default.$viewName").show(false)
> // After another drop, the non-temp view is dropped.
> sql(s"DROP VIEW $viewName")
> {noformat}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]