Return-Path: X-Original-To: apmail-hive-dev-archive@www.apache.org Delivered-To: apmail-hive-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6A44DF306 for ; Tue, 2 Apr 2013 05:53:19 +0000 (UTC) Received: (qmail 37094 invoked by uid 500); 2 Apr 2013 05:53:17 -0000 Delivered-To: apmail-hive-dev-archive@hive.apache.org Received: (qmail 37026 invoked by uid 500); 2 Apr 2013 05:53:17 -0000 Mailing-List: contact dev-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hive.apache.org Delivered-To: mailing list dev@hive.apache.org Received: (qmail 37003 invoked by uid 500); 2 Apr 2013 05:53:17 -0000 Delivered-To: apmail-hadoop-hive-dev@hadoop.apache.org Received: (qmail 36972 invoked by uid 99); 2 Apr 2013 05:53:16 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 02 Apr 2013 05:53:16 +0000 Date: Tue, 2 Apr 2013 05:53:16 +0000 (UTC) From: "Namit Jain (JIRA)" To: hive-dev@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (HIVE-4272) partition wise metadata does not work for text files MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HIVE-4272?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Namit Jain updated HIVE-4272: ----------------------------- Attachment: hive.4272.2.patch > 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 > 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