You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "Haisheng Yuan (JIRA)" <ji...@apache.org> on 2019/07/09 05:21:00 UTC

[jira] [Resolved] (CALCITE-3160) Failed to materialize when the aggregate function uses group key

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

Haisheng Yuan resolved CALCITE-3160.
------------------------------------
       Resolution: Fixed
    Fix Version/s: 1.21.0

Fixed in https://github.com/apache/calcite/commit/6abf37a83b71568c3aa6d757913ab871fa15f837, thanks for the PR, [~donnyzone]!

> Failed to materialize when the aggregate function uses group key
> ----------------------------------------------------------------
>
>                 Key: CALCITE-3160
>                 URL: https://issues.apache.org/jira/browse/CALCITE-3160
>             Project: Calcite
>          Issue Type: Bug
>            Reporter: Haisheng Yuan
>            Assignee: Feng Zhu
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.21.0
>
>          Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> Repro:
> {code:java}
> @Test public void testAggregateGroupSetsRollUp() {
>     checkMaterialize(
>         "select \"empid\", \"deptno\", count(*) as c, sum(\"empid\") as s from \"emps\" "
>             + "group by \"empid\", \"deptno\"",
>         "select count(*) + 1 as c,  \"deptno\" from \"emps\" group by cube(\"empid\",\"deptno\")",
>         HR_FKUK_MODEL,
>         CalciteAssert.checkResultContains(
>             "EnumerableCalc(expr#0..2=[{inputs}], expr#3=[1], "
>                 + "expr#4=[+($t2, $t3)], C=[$t4], deptno=[$t1])\n"
>                 + "  EnumerableAggregate(group=[{0, 1}], groups=[[{0, 1}, {0}, {1}, {}]], agg#0=[$SUM0($2)])\n"
>                 + "    EnumerableTableScan(table=[[hr, m0]])"));
>   }
> {code}
> Note that if we change sum(\"empid\") to sum("salary"), it can materialize successfully.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)