problem with sequence and rcfiles are mixed for null partitions
---------------------------------------------------------------

                 Key: HIVE-1420
                 URL: https://issues.apache.org/jira/browse/HIVE-1420
             Project: Hadoop Hive
          Issue Type: Bug
          Components: Query Processor
            Reporter: Namit Jain
            Assignee: He Yongqiang
             Fix For: 0.6.0


drop table foo;
create table foo (src int, value string) partitioned by (ds string);

alter table foo set fileformat Sequencefile;

insert overwrite table foo partition (ds='1')
select key, value from src;

alter table foo add partition (ds='2');

alter table foo set fileformat rcfile;

select count(1) from foo;


The above testcase fails

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to