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/06/01 18:22:07 UTC

[GitHub] [spark] MaxGekk opened a new pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

MaxGekk opened a new pull request #28699:
URL: https://github.com/apache/spark/pull/28699


   ### What changes were proposed in this pull request?
   Fixed conversions of `java.sql.Timestamp` to milliseconds in `ParquetFilter` by using existing functions from `DateTimeUtils` `fromJavaTimestamp()` and `microsToMillis()`.
   
   ### Why are the changes needed?
   The changes fix the bug:
   ```scala
   scala> spark.conf.set("spark.sql.parquet.outputTimestampType", "TIMESTAMP_MILLIS")
   scala> spark.conf.set("spark.sql.legacy.parquet.datetimeRebaseModeInWrite", "CORRECTED")
   scala> Seq(java.sql.Timestamp.valueOf("1000-06-14 08:28:53.123")).toDF("ts").write.mode("overwrite").parquet("/Users/maximgekk/tmp/ts_millis_old_filter")
   scala> spark.read.parquet("/Users/maximgekk/tmp/ts_millis_old_filter").filter($"ts" === "1000-06-14 08:28:53.123").show(false)
   +---+
   |ts |
   +---+
   +---+
   ```
   
   ### Does this PR introduce _any_ user-facing change?
   Yes, after the changes (for the example above):
   ```scala
   scala> spark.read.parquet("/Users/maximgekk/tmp/ts_millis_old_filter").filter($"ts" === "1000-06-14 08:28:53.123").show(false)
   +-----------------------+
   |ts                     |
   +-----------------------+
   |1000-06-14 08:28:53.123|
   +-----------------------+
   ```
   
   ### How was this patch tested?
   Modified tests in `ParquetFilterSuite` to check old timestamps.


----------------------------------------------------------------
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



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


[GitHub] [spark] AmplabJenkins commented on pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637067137






----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637221801






----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637067137






----------------------------------------------------------------
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



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


[GitHub] [spark] SparkQA commented on pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637030226


   **[Test build #123390 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/123390/testReport)** for PR 28699 at commit [`4ba7e05`](https://github.com/apache/spark/commit/4ba7e05073f47e9595fed34e035e219ca0ba19e1).


----------------------------------------------------------------
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



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


[GitHub] [spark] AmplabJenkins commented on pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637030768






----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
cloud-fan commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637231251


   thanks, merging to 3.0!


----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637063211


   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



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


[GitHub] [spark] SparkQA commented on pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637225543


   **[Test build #123397 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/123397/testReport)** for PR 28699 at commit [`4ba7e05`](https://github.com/apache/spark/commit/4ba7e05073f47e9595fed34e035e219ca0ba19e1).
    * 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



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


[GitHub] [spark] SparkQA commented on pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637335206


   **[Test build #123411 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/123411/testReport)** for PR 28699 at commit [`4ba7e05`](https://github.com/apache/spark/commit/4ba7e05073f47e9595fed34e035e219ca0ba19e1).
    * 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



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


[GitHub] [spark] SparkQA commented on pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637221536


   **[Test build #123411 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/123411/testReport)** for PR 28699 at commit [`4ba7e05`](https://github.com/apache/spark/commit/4ba7e05073f47e9595fed34e035e219ca0ba19e1).


----------------------------------------------------------------
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



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


[GitHub] [spark] AmplabJenkins commented on pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637335673






----------------------------------------------------------------
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



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


[GitHub] [spark] AmplabJenkins commented on pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637063211






----------------------------------------------------------------
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



---------------------------------------------------------------------
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 #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
cloud-fan closed pull request #28699:
URL: https://github.com/apache/spark/pull/28699


   


----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637066722


   **[Test build #123397 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/123397/testReport)** for PR 28699 at commit [`4ba7e05`](https://github.com/apache/spark/commit/4ba7e05073f47e9595fed34e035e219ca0ba19e1).


----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637335673


   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



---------------------------------------------------------------------
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 pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637030226


   **[Test build #123390 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/123390/testReport)** for PR 28699 at commit [`4ba7e05`](https://github.com/apache/spark/commit/4ba7e05073f47e9595fed34e035e219ca0ba19e1).


----------------------------------------------------------------
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



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


[GitHub] [spark] SparkQA commented on pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637066722


   **[Test build #123397 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/123397/testReport)** for PR 28699 at commit [`4ba7e05`](https://github.com/apache/spark/commit/4ba7e05073f47e9595fed34e035e219ca0ba19e1).


----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637063218


   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/123390/
   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



---------------------------------------------------------------------
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 pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637335687


   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/123411/
   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



---------------------------------------------------------------------
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 pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
cloud-fan commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637221206


   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



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


[GitHub] [spark] SparkQA commented on pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
SparkQA commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637063047


   **[Test build #123390 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/123390/testReport)** for PR 28699 at commit [`4ba7e05`](https://github.com/apache/spark/commit/4ba7e05073f47e9595fed34e035e219ca0ba19e1).
    * This patch **fails Spark unit 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



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


[GitHub] [spark] MaxGekk commented on pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
MaxGekk commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637064735


   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



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


[GitHub] [spark] AmplabJenkins commented on pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637226450






----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637226450






----------------------------------------------------------------
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



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


[GitHub] [spark] MaxGekk commented on a change in pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
MaxGekk commented on a change in pull request #28699:
URL: https://github.com/apache/spark/pull/28699#discussion_r433408764



##########
File path: sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetFilters.scala
##########
@@ -148,6 +148,13 @@ class ParquetFilters(
     Binary.fromConstantByteArray(fixedLengthBytes, 0, numBytes)
   }
 
+  private def timestampToMillis(v: Any): JLong = {
+    val timestamp = v.asInstanceOf[Timestamp]
+    val micros = DateTimeUtils.fromJavaTimestamp(timestamp)
+    val millis = DateTimeUtils.toMillis(micros)

Review comment:
       This line causes the problem.




----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637030768






----------------------------------------------------------------
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



---------------------------------------------------------------------
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 pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637221536


   **[Test build #123411 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/123411/testReport)** for PR 28699 at commit [`4ba7e05`](https://github.com/apache/spark/commit/4ba7e05073f47e9595fed34e035e219ca0ba19e1).


----------------------------------------------------------------
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



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


[GitHub] [spark] AmplabJenkins commented on pull request #28699: [SPARK-31885][SQL][3.0] Fix filter push down for old millis timestamps to Parquet

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on pull request #28699:
URL: https://github.com/apache/spark/pull/28699#issuecomment-637221801






----------------------------------------------------------------
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



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