You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/06/26 05:07:53 UTC

[GitHub] [arrow-datafusion] Jimexist opened a new issue #621: unqualified window functions shall differentiate given partition and order by clause

Jimexist opened a new issue #621:
URL: https://github.com/apache/arrow-datafusion/issues/621


   **Describe the bug**
   
   given window functions on the same col with same function but different partition by and order by, the schema is failing due to conflict.
   
   **To Reproduce**
   Steps to reproduce the behavior:
   
   ```
   > select max(c1) over () max_c1, max(c1) over (partition by c2) max_c1_c2 from test;
   Plan("Schema contains duplicate unqualified field name 'MAX(test.c1)'")
   ```
   
   **Expected behavior**
   
   it shall work
   
   **Additional context**
   Add any other context about the problem 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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



[GitHub] [arrow-datafusion] alamb closed issue #621: unqualified window functions shall differentiate given partition and order by clause

Posted by GitBox <gi...@apache.org>.
alamb closed issue #621:
URL: https://github.com/apache/arrow-datafusion/issues/621


   


-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org