Github user viirya commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22394#discussion_r216875122
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetSchemaPruningSuite.scala
 ---
    @@ -245,28 +249,32 @@ class ParquetSchemaPruningSuite
         checkAnswer(query.orderBy("id"), Row(1) :: Nil)
       }
     
    -  private def testMixedCasePruning(testName: String)(testThunk: => Unit) {
    -    withSQLConf(SQLConf.PARQUET_VECTORIZED_READER_ENABLED.key -> "true",
    -      SQLConf.CASE_SENSITIVE.key -> "true") {
    -      test(s"Spark vectorized reader - case-sensitive parser - mixed-case 
schema - $testName") {
    -          withMixedCaseData(testThunk)
    +  private def testExactCasePruning(testName: String)(testThunk: => Unit) {
    +    test(s"Spark vectorized reader - case-sensitive parser - mixed-case 
schema - $testName") {
    +      withSQLConf(SQLConf.PARQUET_VECTORIZED_READER_ENABLED.key -> "true",
    +        SQLConf.CASE_SENSITIVE.key -> "true") {
    +        withMixedCaseData(testThunk)
           }
         }
    -    withSQLConf(SQLConf.PARQUET_VECTORIZED_READER_ENABLED.key -> "false",
    -      SQLConf.CASE_SENSITIVE.key -> "false") {
    -      test(s"Parquet-mr reader - case-insensitive parser - mixed-case 
schema - $testName") {
    +    test(s"Parquet-mr reader - case-sensitive parser - mixed-case schema - 
$testName") {
    +      withSQLConf(SQLConf.PARQUET_VECTORIZED_READER_ENABLED.key -> "false",
    +        SQLConf.CASE_SENSITIVE.key -> "true") {
             withMixedCaseData(testThunk)
           }
         }
    -    withSQLConf(SQLConf.PARQUET_VECTORIZED_READER_ENABLED.key -> "true",
    -      SQLConf.CASE_SENSITIVE.key -> "false") {
    -      test(s"Spark vectorized reader - case-insensitive parser - 
mixed-case schema - $testName") {
    -          withMixedCaseData(testThunk)
    +    testMixedCasePruning(testName)(testThunk)
    +  }
    +
    +  private def testMixedCasePruning(testName: String)(testThunk: => Unit) {
    +    test(s"Parquet-mr reader - case-insensitive parser - mixed-case schema 
- $testName") {
    +      withSQLConf(SQLConf.PARQUET_VECTORIZED_READER_ENABLED.key -> "false",
    --- End diff --
    
    The vectorized reader cases in both `testSchemaPruning` and 
`testExactCasePruning` are put ahead of Parquet-mr reader cases. Shall we 
follow it too in `testMixedCasePruning`?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to