Skip to content

Commit c9dd09b

Browse files
committed
fix bug in test case
1 parent c3f7444 commit c9dd09b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveQuerySuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,7 @@ class HiveQuerySuite extends HiveComparisonTest with SQLTestUtils with BeforeAnd
12391239

12401240
test("SPARK-19490 case sensitivity when filtering hive partition columns") {
12411241
sql("CREATE TABLE partition_test (key Int) partitioned by (date string)")
1242-
sql("INSERT OVERWRITE TABLE partition_test partition('20170101') select 1 from src limit 1")
1242+
sql("INSERT INTO TABLE partition_test partition(date='20170101') select 1 from src limit 1")
12431243
sql("SELECT * FROM partition_test where DATE = '20170101'")
12441244
}
12451245
}

0 commit comments

Comments
 (0)