hannerwang opened a new pull request, #2771: URL: https://github.com/apache/calcite/pull/2771
This change will allow the following sql: SELECT deptno, job, count() FROM emp GROUP BY ALL CUBE (deptno, job), ROLLUP (deptno, job) and SELECT deptno, job, count() FROM emp GROUP BY DISTINCT CUBE (deptno, job), ROLLUP (deptno, job) The GROUP BY ALL is equivalent to GROUP BY, The GROUP BY DISTINCT will remove duplicates from cartesian product of CUBE and ROLLUP. -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
