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)