We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d782e4a commit deb84eaCopy full SHA for deb84ea
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/SQLQuerySuite.scala
@@ -2189,7 +2189,7 @@ class SQLQuerySuite extends QueryTest with SQLTestUtils with TestHiveSingleton {
2189
Seq(true, false).foreach { enableOptimizeMetadataOnlyQuery =>
2190
withSQLConf(SQLConf.OPTIMIZER_METADATA_ONLY.key -> enableOptimizeMetadataOnlyQuery.toString) {
2191
withTable("t") {
2192
- sql("CREATE TABLE t (col1 INT, p1 INT) USING PARQUET PARTITIONED BY (p1)")
+ sql("CREATE TABLE t (col1 INT) PARTITIONED BY (p1 INT)")
2193
sql("INSERT INTO TABLE t PARTITION (p1 = 5) SELECT ID FROM range(1, 1)")
2194
if (enableOptimizeMetadataOnlyQuery) {
2195
// The result is wrong if we enable the configuration.
0 commit comments