Skip to content

Commit

Permalink
Update sql/core/src/test/scala/org/apache/spark/sql/connector/DataSou…
Browse files Browse the repository at this point in the history
…rceV2SQLSuite.scala
  • Loading branch information
yaooqinn authored and xuyu committed Aug 3, 2024
1 parent 306a1f6 commit 17f78fb
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2377,9 +2377,7 @@ class DataSourceV2SQLSuiteV1Filter
val t = "testcat.ns1.ns2.tbl"
withTable(t) {
spark.sql(s"CREATE TABLE $t (id bigint, data string) USING foo")
checkAnswer(
sql(s"SHOW COLUMNS FROM $t"),
Seq(Row("id"), Row("data")))
checkAnswer(sql(s"SHOW COLUMNS FROM $t"), Seq(Row("id"), Row("data")))
}
}

Expand Down

0 comments on commit 17f78fb

Please sign in to comment.