You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Andrew Lamb (Jira)" <ji...@apache.org> on 2020/12/19 20:51:00 UTC

[jira] [Resolved] (ARROW-10808) [Rust] [DataFusion] Support nested expressions in aggregations

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

Andrew Lamb resolved ARROW-10808.
---------------------------------
    Fix Version/s: 3.0.0
       Resolution: Fixed

Issue resolved by pull request 8836
[https://github.com/apache/arrow/pull/8836]

> [Rust] [DataFusion] Support nested expressions in aggregations
> --------------------------------------------------------------
>
>                 Key: ARROW-10808
>                 URL: https://issues.apache.org/jira/browse/ARROW-10808
>             Project: Apache Arrow
>          Issue Type: New Feature
>          Components: Rust - DataFusion
>            Reporter: Daniel Russo
>            Assignee: Daniel Russo
>            Priority: Minor
>              Labels: pull-request-available
>             Fix For: 3.0.0
>
>          Time Spent: 5h 10m
>  Remaining Estimate: 0h
>
> The following queries are not supported by DataFusion:
> {code}
> SELECT MAX(b) FROM t GROUP BY a;
> SELECT MAX(b) + 1 FROM t GROUP BY a;
> SELECT MAX(b + 1) FROM t GROUP BY a;
> SELECT a + 1, MAX(b) FROM t GROUP BY a + 1;
> SELECT MAX(a) FROM t GROUP BY a;
> SELECT * FROM t GROUP BY a, b, c, ...
> {code}
> Add support for these queries. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)