Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix the test
  • Loading branch information
MaxGekk committed Nov 20, 2020
commit ec15f2aba12104832c7feb85cf9f4d54d2fbb30c
Original file line number Diff line number Diff line change
Expand Up @@ -2518,9 +2518,9 @@ class DataSourceV2SQLSuite
val t = "testpart.ns1.ns2.tbl"
withTable(t) {
sql(s"""
|CREATE TABLE $t (id bigint, name string, data string)
|CREATE TABLE $t (id bigint, city string, data string)
|USING foo
|PARTITIONED BY (id, name)""".stripMargin)
|PARTITIONED BY (id, city)""".stripMargin)
sql(s"INSERT INTO $t PARTITION(id = 1, city = 'NY') SELECT 'abc'")

val partTable = catalog("testpart").asTableCatalog
Expand Down