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/05/09 10:04:34 UTC

[GitHub] [arrow-datafusion] Dandandan opened a new issue #300: Query with OVER clause should return error

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


   **Describe the bug**
   Currently we ignore OVER clauses, giving incorrect results.
   
   **To Reproduce**
   ```
   select 1, SUM(x) OVER (PARTITION by x) from (select 1 as x union all select 2 as x) t;
   +----------+--------+
   | Int64(1) | SUM(x) |
   +----------+--------+
   | 1        | 3      |
   +----------+--------+
   
   ```
   
   **Expected behavior**
   Should return error.
   
   **Additional context**
   n/a


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



[GitHub] [arrow-datafusion] Dandandan closed issue #300: Query with OVER clause should return error

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


   


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