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/03 12:38:16 UTC

[GitHub] [spark] beliefer opened a new pull request #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

beliefer opened a new pull request #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442
 
 
   ### What changes were proposed in this pull request?
   When I running first_value and last_value window function occur a `ParserException`.
   Take first_value as an example, the `ParserException` show below.
   ```
   SELECT first_value(unique1) over w,
   last_value(unique1) over w
   FROM tenk1 WHERE unique1 < 10
   WINDOW w AS (order by four range between current row and unbounded following)
    
   org.apache.spark.sql.catalyst.parser.ParseException
    
   no viable alternative at input 'first_value'(line 1, pos 7)
    
   == SQL ==
   SELECT first_value(unique1) over w,
   -------^^^
   last_value(unique1) over w
   FROM tenk1 WHERE unique1 < 10
   WINDOW w AS (order by four range between current row and unbounded following)
   ```
   
   After my investigation, I found that `FIRST`, `FIRST_VALUE`, `LAST`, `LAST_VALUE` are all ansi reserved words. But both `FIRST` and `LAST` are now on the `ansiNonReserved` list, so I put `FIRST_VALUE` and `LAST_VALUE` on the `ansiNonReserved` list too.
   
   ### Why are the changes needed?
   Fix bug.
   
   ### Does this PR introduce any user-facing change?
   No
   
   ### How was this patch tested?
   Exists UT

----------------------------------------------------------------
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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581691482
 
 
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581742253
 
 
   **[Test build #117791 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/117791/testReport)** for PR 27442 at commit [`4c73c93`](https://github.com/apache/spark/commit/4c73c93fa0acc9e3f630a719b7c4369396b52a1c).
    * This patch passes all tests.
    * This patch merges cleanly.
    * This patch adds no public classes.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581426376
 
 
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581427131
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22538/
   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] beliefer commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
beliefer commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-582260470
 
 
   Because https://github.com/apache/spark/pull/25082 has reverted, this PR not need.

----------------------------------------------------------------
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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581742626
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581742633
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/117791/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581691060
 
 
   **[Test build #117791 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/117791/testReport)** for PR 27442 at commit [`4c73c93`](https://github.com/apache/spark/commit/4c73c93fa0acc9e3f630a719b7c4369396b52a1c).

----------------------------------------------------------------
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] beliefer closed pull request #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
beliefer closed pull request #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442
 
 
   

----------------------------------------------------------------
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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581468254
 
 
   **[Test build #117777 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/117777/testReport)** for PR 27442 at commit [`35bf593`](https://github.com/apache/spark/commit/35bf5939641f0a6e93f27f4f7c6185ec3341afb9).

----------------------------------------------------------------
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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581427125
 
 
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581468816
 
 
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581468822
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22539/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581477224
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581468822
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22539/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581397217
 
 
   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] beliefer commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
beliefer commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581425385
 
 
   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 removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581691482
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581468816
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581691486
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22554/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
SparkQA removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581691060
 
 
   **[Test build #117791 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/117791/testReport)** for PR 27442 at commit [`4c73c93`](https://github.com/apache/spark/commit/4c73c93fa0acc9e3f630a719b7c4369396b52a1c).

----------------------------------------------------------------
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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581427125
 
 
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581395033
 
 
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581468254
 
 
   **[Test build #117777 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/117777/testReport)** for PR 27442 at commit [`35bf593`](https://github.com/apache/spark/commit/35bf5939641f0a6e93f27f4f7c6185ec3341afb9).

----------------------------------------------------------------
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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581427131
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22538/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581397217
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581395033
 
 
   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] beliefer removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
beliefer removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581425385
 
 
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581742633
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/117791/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581397224
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/117775/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581426382
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/117776/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581742626
 
 
   Merged build finished. Test PASSed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581426382
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/117776/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581426376
 
 
   Merged build finished. Test FAILed.

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


With regards,
Apache Git Services

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


[GitHub] [spark] AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581477231
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/117777/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581397224
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/117775/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581477224
 
 
   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] beliefer commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
beliefer commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581464856
 
 
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581477231
 
 
   Test FAILed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder/117777/
   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] beliefer commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
beliefer commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581872785
 
 
   cc @gatorsmile 

----------------------------------------------------------------
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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581691486
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22554/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581395036
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22537/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
AmplabJenkins removed a comment on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581395036
 
 
   Test PASSed.
   Refer to this link for build results (access rights to CI server needed): 
   https://amplab.cs.berkeley.edu/jenkins//job/SparkPullRequestBuilder-K8s/22537/
   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 #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value

Posted by GitBox <gi...@apache.org>.
SparkQA commented on issue #27442: [SPARK-30708][SQL] Fix parse exception for first_value and last_value
URL: https://github.com/apache/spark/pull/27442#issuecomment-581477183
 
 
   **[Test build #117777 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/117777/testReport)** for PR 27442 at commit [`35bf593`](https://github.com/apache/spark/commit/35bf5939641f0a6e93f27f4f7c6185ec3341afb9).
    * 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