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

    https://github.com/apache/spark/pull/17524#discussion_r114080292
  
    --- Diff: 
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveDDLSuite.scala 
---
    @@ -107,6 +120,46 @@ class HiveCatalogedDDLSuite extends DDLSuite with 
TestHiveSingleton with BeforeA
         )
       }
     
    +  test("alter table: set location") {
    +    testSetLocation(isDatasourceTable = false)
    +  }
    +
    +  test("alter table: set properties") {
    +    testSetProperties(isDatasourceTable = false)
    +  }
    +
    +  test("alter table: unset properties") {
    +    testUnsetProperties(isDatasourceTable = false)
    +  }
    +
    +  test("alter table: set serde") {
    +    testSetSerde(isDatasourceTable = false)
    +  }
    +
    +  test("alter table: set serde partition") {
    +    testSetSerdePartition(isDatasourceTable = false)
    +  }
    +
    +  test("alter table: change column") {
    +    testChangeColumn(isDatasourceTable = false)
    +  }
    +
    +  test("alter table: rename partition") {
    +    testRenamePartitions(isDatasourceTable = false)
    +  }
    +
    +  test("alter table: drop partition") {
    +    testDropPartitions(isDatasourceTable = false)
    +  }
    +
    +  test("alter table: add partition") {
    +    testAddPartitions(isDatasourceTable = false)
    +  }
    +
    +  test("drop table") {
    +    testDropTable(isDatasourceTable = false)
    +  }
    --- End diff --
    
    Only Hive package supports Hive-serde tables


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to