[
https://issues.apache.org/jira/browse/HIVE-15045?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15603076#comment-15603076
]
Ashutosh Chauhan commented on HIVE-15045:
-----------------------------------------
Oracle which uses slightly different syntax allows both variants:
{code}
select empno, deptno, count(distinct empno) from scott.emp group by grouping
sets (empno, deptno);
select empno, deptno, count(distinct empno) from scott.emp group by cube
(empno, deptno);
{code}
> Count distinct throws error when used in conjunction with grouping set
> ----------------------------------------------------------------------
>
> Key: HIVE-15045
> URL: https://issues.apache.org/jira/browse/HIVE-15045
> Project: Hive
> Issue Type: Bug
> Components: Operators
> Affects Versions: 1.0.0, 1.2.0, 1.1.0, 2.0.0, 2.1.0
> Reporter: Ashutosh Chauhan
>
> {code}
> SELECT key, value, count(distinct value) FROM src GROUP BY key, value with
> cube;
> FAILED: SemanticException [Error 10210]: Grouping sets aggregations (with
> rollups or cubes) are not allowed if aggregation function parameters overlap
> with the aggregation functions columns
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)