Github user yhuai commented on a diff in the pull request:

    https://github.com/apache/spark/pull/16296#discussion_r94700334
  
    --- Diff: 
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveDDLSuite.scala 
---
    @@ -1198,4 +1198,23 @@ class HiveDDLSuite
           assert(e.message.contains("unknown is not a valid partition column"))
         }
       }
    +
    +  test("create hive serde table with new syntax") {
    +    withTable("t", "t2") {
    +      sql("CREATE TABLE t(id int) USING hive OPTIONS(format 'orc')")
    +      val table = 
spark.sessionState.catalog.getTableMetadata(TableIdentifier("t"))
    +      assert(DDLUtils.isHiveTable(table))
    +      assert(table.storage.serde == 
Some("org.apache.hadoop.hive.ql.io.orc.OrcSerde"))
    +      assert(spark.table("t").collect().isEmpty)
    +
    +      sql("INSERT INTO t SELECT 1")
    +      checkAnswer(spark.table("t"), Row(1))
    +
    +      sql("CREATE TABLE t2 USING HIVE AS SELECT 1 AS c1, 'a' AS c2")
    +      val table2 = 
spark.sessionState.catalog.getTableMetadata(TableIdentifier("t2"))
    +      assert(DDLUtils.isHiveTable(table2))
    +      assert(table2.storage.serde == 
Some("org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe"))
    +      checkAnswer(spark.table("t2"), Row(1, "a"))
    +    }
    +  }
    --- End diff --
    
    Let's also exercise partitioning.
    
    Let's also test a orc's option. 


---
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