You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Victoria Markman (JIRA)" <ji...@apache.org> on 2015/06/01 23:32:17 UTC

[jira] [Commented] (DRILL-3238) Cannot Plan Exception is raised when the same window partition is defined in select & window clauses

    [ https://issues.apache.org/jira/browse/DRILL-3238?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14568055#comment-14568055 ] 

Victoria Markman commented on DRILL-3238:
-----------------------------------------

Interestingly, this case "over W" works:

{code}
select sum(a2) over w, count(*) over(partition by a2 order by a2) from t2 window w as (partition by a2 order by a2);
{code}

I did not realized that over(W) is the supported grammar ...

> Cannot Plan Exception is raised when the same window partition is defined in select & window clauses
> ----------------------------------------------------------------------------------------------------
>
>                 Key: DRILL-3238
>                 URL: https://issues.apache.org/jira/browse/DRILL-3238
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Query Planning & Optimization
>            Reporter: Sean Hsuan-Yi Chu
>            Assignee: Sean Hsuan-Yi Chu
>
> While this works:
> {code}
> select sum(a2) over(partition by a2 order by a2), count(*) over(partition by a2 order by a2) 
> from t
> {code}
> , this fails
> {code}
> select sum(a2) over(w), count(*) over(partition by a2 order by a2) 
> from t
> window w as (partition by a2 order by a2)
> {code}
> Notice these two queries are logically the same thing if we plug-in the window definition back into the SELECT-CLAUSE in the 2nd query.



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