Matt McCline created HIVE-12738:
-----------------------------------

             Summary: subquery with NOT IN failing due to ClassCastException
                 Key: HIVE-12738
                 URL: https://issues.apache.org/jira/browse/HIVE-12738
             Project: Hive
          Issue Type: Bug
          Components: Hive
            Reporter: Matt McCline
            Assignee: Matt McCline
            Priority: Critical



{code}
create table student(
            name string,
            age int,
            gpa double)

create table voter(
            name string,
            age int,
            registration string,
            contributions float)

select * 
from student 
where not student.age in
(select age from voter) 
order by age;
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to