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/04/03 05:25:14 UTC

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

Vikram Dixit K created HIVE-6826:
------------------------------------

             Summary: 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


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)