You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@calcite.apache.org by "xiejiajun (Jira)" <ji...@apache.org> on 2021/06/24 00:22:00 UTC

[jira] [Created] (CALCITE-4664) When group by is same as sub-query, grouping sets are missing

xiejiajun created CALCITE-4664:
----------------------------------

             Summary: When group by is same as sub-query, grouping sets are missing
                 Key: CALCITE-4664
                 URL: https://issues.apache.org/jira/browse/CALCITE-4664
             Project: Calcite
          Issue Type: Bug
          Components: core
            Reporter: xiejiajun


For example:
{code:java}
SELECT
t.ID, t.NAME, count(t.AGE) T_AGE
FROM
(SELECT u.ID, u.NAME, u.AGE
FROM USERS u
GROUP BY u.ID, u.NAME, u.AGE
) t
GROUP BY t.ID, t.NAME, t.AGE
GROUPING SETS(
(t.ID, t.NAME),
(t.ID, t.NAME, t.AGE)
)
{code}
will be
{code}
SELECT u.ID, u.NAME, u.AGE
FROM USERS u
GROUP BY u.ID, u.NAME, u.AGE
{code}
groupings set is missing
 



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