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/09/01 11:10:44 UTC

[GitHub] [spark] AngersZhuuuu opened a new pull request #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

AngersZhuuuu opened a new pull request #33892:
URL: https://github.com/apache/spark/pull/33892


   ### What changes were proposed in this pull request?
   For case 
   ```
   CREATE TABLE employees 
   (name STRING, dept STRING, salary INT, age INT);
   
   SELECT AVG(age) OVER win AS salary, 
   AVG(salary) OVER win AS avgsalary,
   MIN(salary) OVER win AS minsalary,
   MAX(salary) OVER win AS maxsalary,
   COUNT(1) OVER win AS numEmps
   FROM employees;
   ```
   Project convert to GlobalAggregate but it use a undefined window spec, the origin error message is bad
   ```
   
   Error in query: unresolved operator 'Aggregate [unresolvedwindowexpression(avg(age#43), WindowSpecReference(win)) AS salary#34, unresolvedwindowexpression(avg(salary#42), WindowSpecReference(win)) AS avgsalary#35, unresolvedwindowexpression(min(salary#42), WindowSpecReference(win)) AS minsalary#36, unresolvedwindowexpression(max(salary#42), WindowSpecReference(win)) AS maxsalary#37, unresolvedwindowexpression(count(1), WindowSpecReference(win)) AS numEmps#38];
   'Aggregate [unresolvedwindowexpression(avg(age#43), WindowSpecReference(win)) AS salary#34, unresolvedwindowexpression(avg(salary#42), WindowSpecReference(win)) AS avgsalary#35, unresolvedwindowexpression(min(salary#42), WindowSpecReference(win)) AS minsalary#36, unresolvedwindowexpression(max(salary#42), WindowSpecReference(win)) AS maxsalary#37, unresolvedwindowexpression(count(1), WindowSpecReference(win)) AS numEmps#38]
   +- SubqueryAlias spark_catalog.default.employees
   +- HiveTableRelation [`default`.`employees`, org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe, Data Cols: [name#40, dept#41, salary#42, age#43], Partition Cols: []]
   ```
   Here we should throw error message of undefined window such as 
   ```
   Window specification w is not defined in the WINDOW clause.
   ```
   
   ### Why are the changes needed?
   Better error message
   
   
   ### Does this PR introduce _any_ user-facing change?
   No
   
   
   ### How was this patch tested?
   Added 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.

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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


   **[Test build #142925 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/142925/testReport)** for PR 33892 at commit [`91917b8`](https://github.com/apache/spark/commit/91917b89677d1fbde6e3dda949ff6bedd21961fd).


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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






-- 
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] AngersZhuuuu commented on pull request #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


   ping @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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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

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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


   **[Test build #142926 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/142926/testReport)** for PR 33892 at commit [`7c3cfa6`](https://github.com/apache/spark/commit/7c3cfa65e39b02734a18df53cc49fda76db9fe72).


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


   **[Test build #142924 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/142924/testReport)** for PR 33892 at commit [`7960d90`](https://github.com/apache/spark/commit/7960d9034183a34139b6588aca34b162abef44a1).
    * 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.

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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


   **[Test build #142918 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/142918/testReport)** for PR 33892 at commit [`f270dd1`](https://github.com/apache/spark/commit/f270dd10ccb36dda5e48bfaa26e2d0bfd7e3f249).


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


   **[Test build #142926 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/142926/testReport)** for PR 33892 at commit [`7c3cfa6`](https://github.com/apache/spark/commit/7c3cfa65e39b02734a18df53cc49fda76db9fe72).


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


   **[Test build #142924 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/142924/testReport)** for PR 33892 at commit [`7960d90`](https://github.com/apache/spark/commit/7960d9034183a34139b6588aca34b162abef44a1).


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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






-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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] AngersZhuuuu commented on pull request #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


   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.

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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] Provide proper error message when use undefined window frame

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


   


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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






-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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

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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


   **[Test build #142925 has finished](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/142925/testReport)** for PR 33892 at commit [`91917b8`](https://github.com/apache/spark/commit/91917b89677d1fbde6e3dda949ff6bedd21961fd).
    * 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] SparkQA removed a comment on pull request #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


   **[Test build #142924 has started](https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/142924/testReport)** for PR 33892 at commit [`7960d90`](https://github.com/apache/spark/commit/7960d9034183a34139b6588aca34b162abef44a1).


-- 
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 #33892: [SPARK-36637][SQL] Provide proper error message when use undefined window frame

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


   thanks, merging to master/3.2!


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


-- 
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 #33892: [SPARK-36637][SQL] GlobalAggregates rule should throw window not defined error when use undefined window expression

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


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


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