Return-Path: Delivered-To: apmail-hadoop-hive-dev-archive@minotaur.apache.org Received: (qmail 64398 invoked from network); 29 Apr 2010 03:23:13 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 29 Apr 2010 03:23:13 -0000 Received: (qmail 59307 invoked by uid 500); 29 Apr 2010 03:23:13 -0000 Delivered-To: apmail-hadoop-hive-dev-archive@hadoop.apache.org Received: (qmail 59134 invoked by uid 500); 29 Apr 2010 03:23:12 -0000 Mailing-List: contact hive-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hive-dev@hadoop.apache.org Delivered-To: mailing list hive-dev@hadoop.apache.org Received: (qmail 59119 invoked by uid 99); 29 Apr 2010 03:23:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Apr 2010 03:23:11 +0000 X-ASF-Spam-Status: No, hits=-1364.2 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 Apr 2010 03:23:10 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o3T3MotP021247 for ; Thu, 29 Apr 2010 03:22:50 GMT Message-ID: <19114596.15131272511370081.JavaMail.jira@thor> Date: Wed, 28 Apr 2010 23:22:50 -0400 (EDT) From: "Edward Capriolo (JIRA)" To: hive-dev@hadoop.apache.org Subject: [jira] Commented: (HIVE-1328) make mapred.input.dir.recursive work for select * In-Reply-To: <21816263.5611272485869133.JavaMail.jira@thor> 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-1328?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12862074#action_12862074 ] Edward Capriolo commented on HIVE-1328: --------------------------------------- Can we look at HIVE-1318 and maybe HIVE-1303 first. Already the external partitions seem to have bugs can we get them working properly before more features are added? > make mapred.input.dir.recursive work for select * > ------------------------------------------------- > > Key: HIVE-1328 > URL: https://issues.apache.org/jira/browse/HIVE-1328 > Project: Hadoop Hive > Issue Type: Improvement > Components: Query Processor > Affects Versions: 0.6.0 > Reporter: John Sichi > Assignee: John Sichi > Fix For: 0.6.0 > > > For the script below, we would like the behavior from MAPREDUCE-1501 to apply so that the select * returns two rows instead of none. > create table fact_daily(x int) > partitioned by (ds string); > create table fact_tz(x int) > partitioned by (ds string, hr string, gmtoffset string); > alter table fact_tz > add partition (ds='2010-01-03', hr='1', gmtoffset='-8'); > insert overwrite table fact_tz > partition (ds='2010-01-03', hr='1', gmtoffset='-8') > select key+11 from src where key=484; > alter table fact_tz > add partition (ds='2010-01-03', hr='2', gmtoffset='-7'); > insert overwrite table fact_tz > partition (ds='2010-01-03', hr='2', gmtoffset='-7') > select key+12 from src where key=484; > alter table fact_daily > set tblproperties('EXTERNAL'='TRUE'); > alter table fact_daily > add partition (ds='2010-01-03') > location '/user/hive/warehouse/fact_tz/ds=2010-01-03'; > set mapred.input.dir.recursive=true; > select * from fact_daily where ds='2010-01-03'; -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.