File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
sql/hive/src/test/scala/org/apache/spark/sql/hive/execution Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -1237,12 +1237,11 @@ class HiveQuerySuite extends HiveComparisonTest with SQLTestUtils with BeforeAnd
12371237 }
12381238 }
12391239
1240- createQueryTest(" SPARK-19490 case sensitivity when filtering hive partition columns" ,
1241- """
1242- | CREATE TABLE partition_test (key Int) partitioned by (date string);
1243- | INSERT OVERWRITE TABLE partition_test partition('20170101') select 1 from src limit 1;
1244- | SELECT * FROM partition_test where DATE = '20170101';
1245- """ .stripMargin)
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" )
1243+ sql(" SELECT * FROM partition_test where DATE = '20170101'" )
1244+ }
12461245}
12471246
12481247// for SPARK-2180 test
You can’t perform that action at this time.
0 commit comments