[ https://issues.apache.org/jira/browse/HIVE-4272?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13623015#comment-13623015 ]
Hudson commented on HIVE-4272: ------------------------------ Integrated in Hive-trunk-hadoop2 #138 (See [https://builds.apache.org/job/Hive-trunk-hadoop2/138/]) HIVE-4272 partition wise metadata does not work for text files (Revision 1463594) Result = FAILURE namit : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1463594 Files : * /hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/exec/FetchOperator.java * /hive/trunk/ql/src/test/queries/clientpositive/partition_wise_fileformat15.q * /hive/trunk/ql/src/test/queries/clientpositive/partition_wise_fileformat16.q * /hive/trunk/ql/src/test/results/clientpositive/partition_wise_fileformat15.q.out * /hive/trunk/ql/src/test/results/clientpositive/partition_wise_fileformat16.q.out * /hive/trunk/serde/src/java/org/apache/hadoop/hive/serde2/objectinspector/ObjectInspectorConverters.java > partition wise metadata does not work for text files > ---------------------------------------------------- > > Key: HIVE-4272 > URL: https://issues.apache.org/jira/browse/HIVE-4272 > Project: Hive > Issue Type: Bug > Components: Query Processor > Reporter: Namit Jain > Assignee: Namit Jain > Fix For: 0.11.0 > > Attachments: hive.4272.1.patch, hive.4272.2.patch, > hive.4272.2.patch-nohcat > > > The following test fails: > set hive.input.format = org.apache.hadoop.hive.ql.io.CombineHiveInputFormat; > -- This tests that the schema can be changed for binary serde data > create table partition_test_partitioned(key string, value string) > partitioned by (dt string) stored as textfile; > insert overwrite table partition_test_partitioned partition(dt='1') > select * from src where key = 238; > select * from partition_test_partitioned where dt is not null; > select key+key, value from partition_test_partitioned where dt is not null; > alter table partition_test_partitioned change key key int; > select key+key, value from partition_test_partitioned where dt is not null; > select * from partition_test_partitioned where dt is not null; > It works fine for a RCFile -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira