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 c3f7444 commit c9dd09bCopy full SHA for c9dd09b
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveQuerySuite.scala
@@ -1239,7 +1239,7 @@ class HiveQuerySuite extends HiveComparisonTest with SQLTestUtils with BeforeAnd
1239
1240
test("SPARK-19490 case sensitivity when filtering hive partition columns") {
1241
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")
+ sql("INSERT INTO TABLE partition_test partition(date='20170101') select 1 from src limit 1")
1243
sql("SELECT * FROM partition_test where DATE = '20170101'")
1244
}
1245
0 commit comments