[
https://issues.apache.org/jira/browse/CALCITE-3160?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16878157#comment-16878157
]
Haisheng Yuan edited comment on CALCITE-3160 at 7/3/19 8:52 PM:
----------------------------------------------------------------
So the original description is more appropriate. I'll change it back.
[~donnyzone] Please update the commit description.
was (Author: hyuan):
So the original description is more appropriate. I'll change it back.
> 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
> Time Spent: 10m
> 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)