Join on union type fails
------------------------
Key: HIVE-2508
URL: https://issues.apache.org/jira/browse/HIVE-2508
Project: Hive
Issue Type: Bug
Reporter: Ashutosh Chauhan
{code}
hive> CREATE TABLE DEST1(key UNIONTYPE<STRING, STRING>, value BIGINT) STORED AS
TEXTFILE;
OK
Time taken: 0.076 seconds
hive> CREATE TABLE DEST2(key UNIONTYPE<STRING, STRING>, value BIGINT) STORED AS
TEXTFILE;
OK
Time taken: 0.034 seconds
hive> SELECT * FROM DEST1 JOIN DEST2 on (DEST1.key = DEST2.key);
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira