[
https://issues.apache.org/jira/browse/HIVE-1420?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12880904#action_12880904
]
Namit Jain commented on HIVE-1420:
----------------------------------
+1
will commit if the tests pass
> 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
> Affects Versions: 0.6.0
> Reporter: Namit Jain
> Assignee: He Yongqiang
> Fix For: 0.6.0, 0.7.0
>
> Attachments: hive-1420.1.patch
>
>
> 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.