GitHub user clockfly opened a pull request:

    https://github.com/apache/spark/pull/13414

    [SPARK-15674][SQL] Deprecates "CREATE TEMPORARY TABLE USING...", uses 
"CREAT TEMPORARY VIEW USING..." instead

    ## What changes were proposed in this pull request?
    
    The current implementation of "CREATE TEMPORARY TABLE USING..." is actually 
creating a temporary VIEW behind the scene. We should just use "CREATE 
TEMPORARY VIEW USING..." instead.
    
    Example:
    
    ```
    scala> spark.sql("CREATE temporary view  my_tab7 (c1: String, c2: String)  
USING org.apache.spark.sql.execution.datasources.csv.CSVFileFormat  OPTIONS 
(PATH '/Users/seanzhong/csv/cars.csv')")
    scala> spark.sql("select c1, c2 from my_tab7").show()
    +----+-----+
    |  c1|   c2|
    +----+-----+
    |year| make|
    |2012|Tesla|
    ...
    ```
    
    It NOW prints a **deprecation warning** if "CREATE TEMPORARY TABLE 
USING..." is used.
    
    ```
    scala> spark.sql("CREATE temporary table  my_tab7 (c1: String, c2: String)  
USING org.apache.spark.sql.execution.datasources.csv.CSVFileFormat  OPTIONS 
(PATH '/Users/seanzhong/csv/cars.csv')")
    16/05/31 10:39:27 WARN SparkStrategies$DDLStrategy: CREATE TEMPORARY TABLE 
tableName USING... is deprecated, please use CREATE TEMPORARY VIEW viewName 
USING... instead
    ```
    
    
    ## How was this patch tested?
    
    Unit test.


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/clockfly/spark create_temp_view_using

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/spark/pull/13414.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #13414
    
----
commit 94d66c20c23cbb286495be70988677d4b5f29b3d
Author: Sean Zhong <seanzh...@databricks.com>
Date:   2016-05-31T17:32:13Z

    SPARK-15674: Deprecates "CREATE TEMPORARY TABLE USING...", use "CREATE 
TEMPORARY VIEW USING..." instead

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to