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/17 17:12:01 UTC

[GitHub] [spark] MaxGekk opened a new pull request #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

MaxGekk opened a new pull request #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611
 
 
   ### What changes were proposed in this pull request?
   In the PR (a backport of #27543), I propose to replace `%` by `Math.floorMod` in `DateTimeUtils.truncTimestamp` for the `SECOND` and `MINUTE` levels.
   
   ### Why are the changes needed?
   This fixes the issue of incorrect truncation of timestamps before the epoch `1970-01-01T00:00:00.000000Z` to the `SECOND` and `MINUTE` levels. For example, timestamps after the epoch are truncated by cutting off the rest part of the timestamp:
   ```sql
   spark-sql> select date_trunc('SECOND', '2020-02-11 00:01:02.123');
   2020-02-11 00:01:02
   ```
   but seconds in the truncated timestamp before the epoch are increased by 1:
   ```sql
   spark-sql> select date_trunc('SECOND', '1960-02-11 00:01:02.123');
   1960-02-11 00:01:03
   ```
   
   ### Does this PR introduce any user-facing change?
   Yes. After the changes, the example above outputs correct result:
   ```sql
   spark-sql> select date_trunc('SECOND', '1960-02-11 00:01:02.123');
   1960-02-11 00:01:02
   ```
   
   ### How was this patch tested?
   Added new tests to `DateFunctionsSuite`.

----------------------------------------------------------------
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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587089423
 
 
   **[Test build #118593 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118593/testReport)** for PR 27611 at commit [`755bce5`](https://github.com/apache/spark/commit/755bce549eaa1ee1372e681f2817a7fc859b9c03).

----------------------------------------------------------------
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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587122809
 
 
   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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587182110
 
 
   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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587128965
 
 
   **[Test build #118600 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118600/testReport)** for PR 27611 at commit [`755bce5`](https://github.com/apache/spark/commit/755bce549eaa1ee1372e681f2817a7fc859b9c03).

----------------------------------------------------------------
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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587122816
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118593/
   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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587089784
 
 
   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] cloud-fan commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
cloud-fan commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587262803
 
 
   thanks, merging to 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 commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587127040
 
 
   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 removed a comment on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587089423
 
 
   **[Test build #118593 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118593/testReport)** for PR 27611 at commit [`755bce5`](https://github.com/apache/spark/commit/755bce549eaa1ee1372e681f2817a7fc859b9c03).

----------------------------------------------------------------
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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587089784
 
 
   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 commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587182116
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118600/
   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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587089796
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23347/
   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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587127040
 
 
   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 commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587127049
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23353/
   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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587181893
 
 
   **[Test build #118600 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118600/testReport)** for PR 27611 at commit [`755bce5`](https://github.com/apache/spark/commit/755bce549eaa1ee1372e681f2817a7fc859b9c03).
    * 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 removed a comment on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587182116
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118600/
   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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587089796
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23347/
   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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
MaxGekk commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587126677
 
 
   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] AmplabJenkins commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587122816
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/118593/
   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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587182110
 
 
   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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587122510
 
 
   **[Test build #118593 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118593/testReport)** for PR 27611 at commit [`755bce5`](https://github.com/apache/spark/commit/755bce549eaa1ee1372e681f2817a7fc859b9c03).
    * 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


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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587128965
 
 
   **[Test build #118600 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/118600/testReport)** for PR 27611 at commit [`755bce5`](https://github.com/apache/spark/commit/755bce549eaa1ee1372e681f2817a7fc859b9c03).

----------------------------------------------------------------
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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587127049
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/23353/
   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 #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611#issuecomment-587122809
 
 
   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] cloud-fan closed pull request #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds

Posted by GitBox <gi...@apache.org>.
cloud-fan closed pull request #27611: [SPARK-30793][SQL][2.4] Fix truncations of timestamps before the epoch to minutes and seconds
URL: https://github.com/apache/spark/pull/27611
 
 
   

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