You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@drill.apache.org by "Chris Westin (JIRA)" <ji...@apache.org> on 2015/04/20 21:31:58 UTC

[jira] [Commented] (DRILL-2411) Scalar SUM/AVG over empty result set returns no rows instead of NULL

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

Chris Westin commented on DRILL-2411:
-------------------------------------

Re "the result of any other aggregate function is the null value" doesn't seem right in all cases. For sum() and avg() (and perhaps others) over a numeric column, I imagine the result should also be zero.

> Scalar SUM/AVG over empty result set returns no rows instead of NULL
> --------------------------------------------------------------------
>
>                 Key: DRILL-2411
>                 URL: https://issues.apache.org/jira/browse/DRILL-2411
>             Project: Apache Drill
>          Issue Type: Bug
>          Components: Execution - Relational Operators
>            Reporter: Victoria Markman
>            Assignee: Steven Phillips
>            Priority: Critical
>             Fix For: 1.0.0
>
>
> Queries below should return NULL:
> {code}
> 0: jdbc:drill:schema=dfs> select sum(a2) from t2 where 1=0;
> +------------+
> |   EXPR$0   |
> +------------+
> +------------+
> No rows selected (0.08 seconds)
> 0: jdbc:drill:schema=dfs> select avg(a2) from t2 where 1=0;
> +------------+
> |   EXPR$0   |
> +------------+
> +------------+
> No rows selected (0.074 seconds)
> {code}
> When grouped, result is correct:
> {code}
> 0: jdbc:drill:schema=dfs> select a2, sum(a2) from t2 where 1=0 group by a2;
> +------------+------------+
> |     a2     |   EXPR$1   |
> +------------+------------+
> +------------+------------+
> No rows selected (0.11 seconds)
> {code}
> I'm not convinced and it is not very intuitive that correct result should be NULL, but this is what postgres returns and Aman thinks NULL is the correct behavior :)



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