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 6884ad3 commit 7214b8aCopy full SHA for 7214b8a
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/HiveQuerySuite.scala
@@ -1236,6 +1236,12 @@ class HiveQuerySuite extends HiveComparisonTest with SQLTestUtils with BeforeAnd
1236
}
1237
1238
1239
+
1240
+ createQueryTest("SPARK-19490: case sensitivity when filtering hive partition columns",
1241
+ """
1242
+ | CREATE TABLE partition_test (key Int) partitioned by date;
1243
+ | SELECT * FROM partition_test where DATE = '20170101';
1244
+ """.stripMargin)
1245
1246
1247
// for SPARK-2180 test
0 commit comments