[
https://issues.apache.org/jira/browse/HIVE-6826?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13990125#comment-13990125
]
Vikram Dixit K commented on HIVE-6826:
--------------------------------------
Committed to trunk. It is stable to back port to 0.13.
Thanks
Vikram.
> Hive-tez has issues when different partitions work off of different input
> types
> -------------------------------------------------------------------------------
>
> Key: HIVE-6826
> URL: https://issues.apache.org/jira/browse/HIVE-6826
> Project: Hive
> Issue Type: Bug
> Components: Tez
> Affects Versions: 0.13.0, 0.14.0
> Reporter: Vikram Dixit K
> Assignee: Vikram Dixit K
> Attachments: HIVE-6826.1.patch, HIVE-6826.2.patch
>
>
> create table test (key int, value string) partitioned by (p int) stored as
> textfile;
> insert into table test partition (p=1) select * from src limit 10;
> alter table test set fileformat orc;
> insert into table test partition (p=2) select * from src limit 10;
> describe test;
> select * from test where p=1 and key > 0;
> select * from test where p=2 and key > 0;
> select * from test where key > 0;
> throws a classcast exception
--
This message was sent by Atlassian JIRA
(v6.2#6252)