Vineet Garg created HIVE-16002:
----------------------------------
Summary: Correlated IN subquery with aggregate asserts in
sq_count_check UDF
Key: HIVE-16002
URL: https://issues.apache.org/jira/browse/HIVE-16002
Project: Hive
Issue Type: Bug
Reporter: Vineet Garg
Assignee: Vineet Garg
==Reproducer==
{code:SQL}
create table t(i int, j int);
insert into t values(0,1), (0,2);
create table tt(i int, j int);
insert into tt values(0,3);
select * from t where i IN (select count(i) from tt where tt.j = t.j);
{code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)