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

Victoria Markman commented on DRILL-3196:
-----------------------------------------

Verified fixed in: 1.1.0

#Thu Jun 18 16:36:49 EDT 2015
git.commit.id.abbrev=a027f69

Test cases:
{code}
select sum(a2) over(partition by a2 order by a2), count(*) over(partition by 
a2,b2,c2)  from t2 order by 1,2;
select sum(a2) over(partition by a2 order by a2), count(*) over()  from t2 
order by 1,2;
select sum(a2) over(partition by a2 order by a2), count(*) over(order by a2)  
from t2 order by 1,2; 
select sum(a2) over(partition by a2 order by a2), count(*) over(partition by a2 
order by b2)  from t2 order by 1,2;
select sum(a2) over(partition by a2 order by a2), count(*) over(partition by b2 
order by b2)  from t2 order by 1,2;
select sum(a2) over(partition by a2 order by a2), sum(*) over(partition by b2 
order by b2)  from t2 order by 1,2; 

-- mix window clause with over clause (different) 
select
        avg(a1) over w1,
        sum(a1) over w1,
        row_number() over (order by b1)
from    t1
window w1 as (partition by c1);

-- Should not be disabled
select
        avg(a1) over w1,
        sum(a1) over w1,
        sum(a1) over (partition by b1)
from    t1
window w1 as (partition by b1); 
{code}

> Disable multiple partition by clauses in the same sql query
> -----------------------------------------------------------
>
>                 Key: DRILL-3196
>                 URL: https://issues.apache.org/jira/browse/DRILL-3196
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Query Planning & Optimization
>    Affects Versions: 1.0.0
>            Reporter: Victoria Markman
>            Assignee: Sean Hsuan-Yi Chu
>            Priority: Critical
>              Labels: window_function
>             Fix For: 1.1.0
>
>
> Currently these queries parse and execute, but plan does not look correct.
> {code}
> 0: jdbc:drill:schema=dfs> explain plan for  select sum(a2) over(partition by 
> a2 order by a2), count(*) over(partition by a2,b2,c2)  from t2 order by 1,2; 
> +------+------+
> | text | json |
> +------+------+
> | 00-00    Screen
> 00-01      Project(EXPR$0=[$0], EXPR$1=[$1])
> 00-02        SelectionVectorRemover
> 00-03          Sort(sort0=[$0], sort1=[$1], dir0=[ASC], dir1=[ASC])
> 00-04            Project(EXPR$0=[CASE(>($3, 0), CAST($4):ANY, null)], 
> EXPR$1=[$5])
> 00-05              Window(window#0=[window(partition {0, 1, 2} order by [] 
> range between UNBOUNDED PRECEDING and UNBOUNDED FOLLOWING aggs [COUNT()])])
> 00-06                SelectionVectorRemover
> 00-07                  Sort(sort0=[$0], sort1=[$1], sort2=[$2], dir0=[ASC], 
> dir1=[ASC], dir2=[ASC])
> 00-08                    Window(window#0=[window(partition {0} order by [0] 
> range between UNBOUNDED PRECEDING and CURRENT ROW aggs [COUNT($0), 
> $SUM0($0)])])
> 00-09                      SelectionVectorRemover
> 00-10                        Sort(sort0=[$0], sort1=[$0], dir0=[ASC], 
> dir1=[ASC])
> 00-11                          Project(a2=[$1], b2=[$0], c2=[$2])
> 00-12                            Scan(groupscan=[ParquetGroupScan 
> [entries=[ReadEntryWithPath [path=maprfs:///drill/testdata/aggregation/t2]], 
> selectionRoot=/drill/testdata/aggregation/t2, numFiles=1, columns=[`a2`, 
> `b2`, `c2`]]])
> {code}



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

Reply via email to