You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Zoltan Haindrich (JIRA)" <ji...@apache.org> on 2017/10/19 14:01:15 UTC

[jira] [Created] (HIVE-17846) Fix simple groupping sets case

Zoltan Haindrich created HIVE-17846:
---------------------------------------

             Summary: Fix simple groupping sets case
                 Key: HIVE-17846
                 URL: https://issues.apache.org/jira/browse/HIVE-17846
             Project: Hive
          Issue Type: Bug
            Reporter: Zoltan Haindrich


I've had a few new cases locally for HIVE-17617 and currently this query runs into exception.
{code}
create table tx1 (a integer,b integer,c integer);

 select  sum(c),
        grouping(b),
     'no rows' as expected
from    tx1
 where       a<0
 group by b grouping sets (b);
{code}

Apparently the calcite upgrade(HIVE-17672) have broken it.




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)