Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/14482#discussion_r73478108
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/execution/command/DDLCommandSuite.scala
 ---
    @@ -329,47 +328,29 @@ class DDLCommandSuite extends PlanTest {
     
       test("create table - location implies external") {
         val query = "CREATE TABLE my_tab LOCATION '/something/anything'"
    -    val ct = parseAs[CreateTableCommand](query)
    -    assert(ct.table.tableType == CatalogTableType.EXTERNAL)
    -    assert(ct.table.storage.locationUri == Some("/something/anything"))
    -  }
    -
    -  test("create table - column repeated in partitioning columns") {
    -    val query = "CREATE TABLE tab1 (key INT, value STRING) PARTITIONED BY 
(key INT, hr STRING)"
    -    val e = intercept[ParseException] { parser.parsePlan(query) }
    -    assert(e.getMessage.contains(
    -      "Operation not allowed: Partition columns may not be specified in 
the schema: [\"key\"]"))
    -  }
    -
    -  test("create table - duplicate column names in the table definition") {
    --- End diff --
    
    here too


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