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 2021/10/28 18:13:27 UTC

[GitHub] [spark] allisonwang-db opened a new pull request #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

allisonwang-db opened a new pull request #34427:
URL: https://github.com/apache/spark/pull/34427


   ### What changes were proposed in this pull request?
   This PR improves error messages for arithmetic overflow exceptions thrown under ANSI mode. It augments the error messages by suggesting workarounds to users:
   - Turn off ANSI mode (except for ANSI interval type)
   - Use `try_` function if applicable.
   
   ### Why are the changes needed?
   <!--
   Please clarify why the changes are needed. For instance,
     1. If you propose a new API, clarify the use case for a new API.
     2. If you fix a bug, you can clarify why it is a bug.
   -->
   To make error messages more actionable.
   
   ### Does this PR introduce _any_ user-facing change?
   <!--
   Note that it means *any* user-facing change including all aspects such as the documentation fix.
   If yes, please clarify the previous behavior and the change this PR proposes - provide the console output, description and/or an example to show the behavior difference if possible.
   If possible, please also clarify if this is a user-facing change compared to the released Spark versions or within the unreleased branches such as master.
   If no, write 'No'.
   -->
   Yes. Certain error messages will be different.
   
   ### How was this patch tested?
   <!--
   If tests were added, say they were added here. Please make sure to add some test cases that check the changes thoroughly including negative and positive cases if possible.
   If it was tested in a way different from regular unit tests, please clarify how you tested step by step, ideally copy and paste-able, so that other reviewers can test and check, and descendants can verify in the future.
   If tests were not added, please describe why they were not added and/or why it was difficult to add.
   If benchmark tests were added, please run the benchmarks in GitHub Actions for the consistent environment, and the instructions could accord to: https://spark.apache.org/developer-tools.html#github-workflow-benchmarks.
   -->
   Existing tests.


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   Kubernetes integration test starting
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/49196/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 a change in pull request #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

Posted by GitBox <gi...@apache.org>.
cloud-fan commented on a change in pull request #34427:
URL: https://github.com/apache/spark/pull/34427#discussion_r739059574



##########
File path: sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/arithmetic.scala
##########
@@ -326,9 +328,9 @@ case class Add(
       IntervalUtils.add(
         input1.asInstanceOf[CalendarInterval], input2.asInstanceOf[CalendarInterval])
     case _: DayTimeIntervalType =>
-      Math.addExact(input1.asInstanceOf[Long], input2.asInstanceOf[Long])
+      MathUtils.addExact(input1.asInstanceOf[Long], input2.asInstanceOf[Long])

Review comment:
       is it better to not show the workaround in the error message for ANSI interval? e.g. we can still use `Math.addExact` here




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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/144723/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   Kubernetes integration test starting
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/49195/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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] allisonwang-db commented on pull request #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

Posted by GitBox <gi...@apache.org>.
allisonwang-db commented on pull request #34427:
URL: https://github.com/apache/spark/pull/34427#issuecomment-954938910


   @cloud-fan this seems to be closed but not merged?


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   **[Test build #144725 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/144725/testReport)** for PR 34427 at commit [`6d090f4`](https://github.com/apache/spark/commit/6d090f481967b10ebe66b725ca25992244148a47).
    * 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.

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   Kubernetes integration test status failure
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/49193/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/49196/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/49193/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/144725/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   **[Test build #144727 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/144727/testReport)** for PR 34427 at commit [`d16505b`](https://github.com/apache/spark/commit/d16505b5d701dbec67c83ff9b52dcde7814cc745).


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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] allisonwang-db removed a comment on pull request #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

Posted by GitBox <gi...@apache.org>.
allisonwang-db removed a comment on pull request #34427:
URL: https://github.com/apache/spark/pull/34427#issuecomment-954938910


   @cloud-fan this seems to be closed but not merged?


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   Kubernetes integration test starting
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/49193/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/144723/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   **[Test build #144727 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/144727/testReport)** for PR 34427 at commit [`d16505b`](https://github.com/apache/spark/commit/d16505b5d701dbec67c83ff9b52dcde7814cc745).


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


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


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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] allisonwang-db commented on pull request #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

Posted by GitBox <gi...@apache.org>.
allisonwang-db commented on pull request #34427:
URL: https://github.com/apache/spark/pull/34427#issuecomment-954311814


   cc @cloud-fan


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   Kubernetes integration test status failure
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/49195/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   thanks, merging to master!


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


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


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   **[Test build #144725 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/144725/testReport)** for PR 34427 at commit [`6d090f4`](https://github.com/apache/spark/commit/6d090f481967b10ebe66b725ca25992244148a47).


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/49193/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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






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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   **[Test build #144725 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/144725/testReport)** for PR 34427 at commit [`6d090f4`](https://github.com/apache/spark/commit/6d090f481967b10ebe66b725ca25992244148a47).


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/49195/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/49195/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   **[Test build #144727 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/144727/testReport)** for PR 34427 at commit [`d16505b`](https://github.com/apache/spark/commit/d16505b5d701dbec67c83ff9b52dcde7814cc745).
    * This patch **fails to build**.
    * 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.

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/144727/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   Kubernetes integration test status failure
   URL: https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder-K8s/49196/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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 #34427: [SPARK-37149][SQL] Improve error messages for arithmetic overflow exceptions under ANSI mode

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


   
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/49196/
   


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

To unsubscribe, e-mail: reviews-unsubscribe@spark.apache.org

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