You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@drill.apache.org by "Sean Hsuan-Yi Chu (JIRA)" <ji...@apache.org> on 2015/06/25 19:32:05 UTC

[jira] [Resolved] (DRILL-3359) Drill should throw and error when window function defined using WINDOW AS uses ROWS UNBOUNDED PRECEDING

     [ https://issues.apache.org/jira/browse/DRILL-3359?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sean Hsuan-Yi Chu resolved DRILL-3359.
--------------------------------------
    Resolution: Fixed

> Drill should throw and error when window function defined using WINDOW AS uses ROWS UNBOUNDED PRECEDING
> -------------------------------------------------------------------------------------------------------
>
>                 Key: DRILL-3359
>                 URL: https://issues.apache.org/jira/browse/DRILL-3359
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Query Planning & Optimization
>            Reporter: Deneche A. Hakim
>            Assignee: Sean Hsuan-Yi Chu
>              Labels: window_function
>             Fix For: 1.1.0
>
>         Attachments: DRILL-3359.1.patch
>
>
> as part of DRILL-3188, the following query is not supported and Drill displays the proper error message:
> {noformat}
> 0: jdbc:drill:zk=local> select sum(salary) over(partition by position_id order by salary rows unbounded preceding) from cp.`employee.json` limit 20;
> Error: UNSUPPORTED_OPERATION ERROR: This type of window frame is currently not supported 
> See Apache Drill JIRA: DRILL-3188
> {noformat}
> But when defining the same window using a WINDOW AS, Drill doesn't throw any error:
> {noformat}
> 0: jdbc:drill:zk=local> select sum(salary) over w from cp.`employee.json` window w as (partition by position_id order by salary rows unbounded preceding) limit 20;
> +-----------+
> |  EXPR$0   |
> +-----------+
> | 80000.0   |
> | 30000.0   |
> | 135000.0  |
> | 135000.0  |
> | 135000.0  |
> | 215000.0  |
> | 215000.0  |
> | 25000.0   |
> | 15000.0   |
> | 50000.0   |
> | 6700.0    |
> | 14700.0   |
> | 34700.0   |
> | 34700.0   |
> | 5000.0    |
> | 13500.0   |
> | 58500.0   |
> | 5000.0    |
> | 11700.0   |
> | 20000.0   |
> +-----------+
> 20 rows selected (0.348 seconds)
> {noformat}
> The results are, of course, incorrect



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)