You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by GitBox <gi...@apache.org> on 2019/06/06 14:09:44 UTC

[GitHub] [calcite] DonnyZone opened a new pull request #1258: [CALCITE-3088] Multi-groupsets query failed due to data type preservation check

DonnyZone opened a new pull request #1258: [CALCITE-3088] Multi-groupsets query failed due to data type preservation check 
URL: https://github.com/apache/calcite/pull/1258
 
 
   The issue is described in [CALCITE-3088](https://issues.apache.org/jira/browse/CALCITE-3088).
   This kind of query is supported, for example, the case in **agg.iq**
   ```
   # ROLLUP on 1 column
   select deptno + 1, count(*) as c
   from emp
   group by rollup(deptno);
   ```
   However, `nullifyType` in `AggregatingSelectScope` only checks the SqlNode itself, we need to take more cases into consideration.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services