You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Vikram Dixit K (JIRA)" <ji...@apache.org> on 2014/05/03 02:17:15 UTC

[jira] [Updated] (HIVE-6826) Hive-tez has issues when different partitions work off of different input types

     [ https://issues.apache.org/jira/browse/HIVE-6826?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Vikram Dixit K updated HIVE-6826:
---------------------------------

    Status: Open  (was: Patch Available)

> 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)