You are viewing a plain text version of this content. The canonical link for it is here.
Posted to reviews@spark.apache.org by GitBox <gi...@apache.org> on 2020/02/14 06:40:32 UTC

[GitHub] [spark] MaxGekk opened a new pull request #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

MaxGekk opened a new pull request #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574
 
 
   ### What changes were proposed in this pull request?
   In the PR, I propose to convert the attribute name of `StringStartsWith` pushed down to the Parquet datasource to column reference via the `nameToParquetField` map. Similar conversions are performed for other source filters pushed down to parquet.
   
   ### Why are the changes needed?
   This fixes the bug described in [SPARK-30826](https://issues.apache.org/jira/browse/SPARK-30826). The query from an external table:
   ```sql
   CREATE TABLE t1 (col STRING)
   USING parquet
   OPTIONS (path '$path')
   ```
   created on top of written parquet files by `Seq("42").toDF("COL").write.parquet(path)` returns wrong empty result:
   ```scala
   spark.sql("SELECT * FROM t1 WHERE col LIKE '4%'").show
   +---+
   |col|
   +---+
   +---+
   ```
   
   ### Does this PR introduce any user-facing change?
   Yes. After the changes the result is correct for the example above:
   ```scala
   spark.sql("SELECT * FROM t1 WHERE col LIKE '4%'").show
   +---+
   |col|
   +---+
   | 42|
   +---+
   ```
   
   ### How was this patch tested?
   Added a test to `ParquetFilterSuite`

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586144339
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118396/
   Test FAILed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] MaxGekk commented on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet

Posted by GitBox <gi...@apache.org>.
MaxGekk commented on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586328786
 
 
   @cloud-fan Yes, 2.4 has the bug too.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] cloud-fan closed pull request #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet

Posted by GitBox <gi...@apache.org>.
cloud-fan closed pull request #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet
URL: https://github.com/apache/spark/pull/27574
 
 
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] cloud-fan commented on a change in pull request #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet

Posted by GitBox <gi...@apache.org>.
cloud-fan commented on a change in pull request #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#discussion_r379377508
 
 

 ##########
 File path: sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetFilters.scala
 ##########
 @@ -591,7 +591,7 @@ class ParquetFilters(
       case sources.StringStartsWith(name, prefix)
           if pushDownStartWith && canMakeFilterOn(name, prefix) =>
         Option(prefix).map { v =>
-          FilterApi.userDefined(binaryColumn(name),
+          FilterApi.userDefined(binaryColumn(nameToParquetField(name).fieldName),
 
 Review comment:
   good catch!

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586277208
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586144339
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118396/
   Test FAILed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] cloud-fan commented on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet

Posted by GitBox <gi...@apache.org>.
cloud-fan commented on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586584207
 
 
   thanks, merging to master/3.0/2.4!

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586146956
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23160/
   Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586146944
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] MaxGekk commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
MaxGekk commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586144576
 
 
   jenkins, retest this, please

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586121189
 
 
   **[Test build #118396 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118396/testReport)** for PR 27574 at commit [`5e632df`](https://github.com/apache/spark/commit/5e632dfda94a7b657900f9d5ef9e8a0879663670).

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586146944
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586276391
 
 
   **[Test build #118401 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118401/testReport)** for PR 27574 at commit [`5e632df`](https://github.com/apache/spark/commit/5e632dfda94a7b657900f9d5ef9e8a0879663670).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds no public classes.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586277221
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118401/
   Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586144331
 
 
   Merged build finished. Test FAILed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586146956
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23160/
   Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586121982
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23153/
   Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586146009
 
 
   **[Test build #118401 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118401/testReport)** for PR 27574 at commit [`5e632df`](https://github.com/apache/spark/commit/5e632dfda94a7b657900f9d5ef9e8a0879663670).

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] cloud-fan commented on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet

Posted by GitBox <gi...@apache.org>.
cloud-fan commented on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586311842
 
 
   does 2.4 also have this bug?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586146009
 
 
   **[Test build #118401 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118401/testReport)** for PR 27574 at commit [`5e632df`](https://github.com/apache/spark/commit/5e632dfda94a7b657900f9d5ef9e8a0879663670).

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586277221
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118401/
   Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586121982
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23153/
   Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586121189
 
 
   **[Test build #118396 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118396/testReport)** for PR 27574 at commit [`5e632df`](https://github.com/apache/spark/commit/5e632dfda94a7b657900f9d5ef9e8a0879663670).

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586144331
 
 
   Merged build finished. Test FAILed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Respect reference case in `StringStartsWith` pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586277208
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] SparkQA commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586144119
 
 
   **[Test build #118396 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118396/testReport)** for PR 27574 at commit [`5e632df`](https://github.com/apache/spark/commit/5e632dfda94a7b657900f9d5ef9e8a0879663670).
    * This patch **fails due to an unknown error code, -9**.
    * This patch merges cleanly.
    * This patch adds no public classes.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586121974
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27574: [SPARK-30826][SQL] Fix wrong result after the `StringStartsWith` filter pushed down to parquet
URL: https://github.com/apache/spark/pull/27574#issuecomment-586121974
 
 
   Merged build finished. Test PASSed.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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