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 3D434EDEC for ; Thu, 17 Jan 2013 20:56:14 +0000 (UTC) Received: (qmail 49349 invoked by uid 500); 17 Jan 2013 20:56:13 -0000 Delivered-To: apmail-hive-dev-archive@hive.apache.org Received: (qmail 49296 invoked by uid 500); 17 Jan 2013 20:56:13 -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 49285 invoked by uid 500); 17 Jan 2013 20:56:13 -0000 Delivered-To: apmail-hadoop-hive-dev@hadoop.apache.org Received: (qmail 49282 invoked by uid 99); 17 Jan 2013 20:56:13 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Jan 2013 20:56:13 +0000 Date: Thu, 17 Jan 2013 20:56:13 +0000 (UTC) From: "Hudson (JIRA)" To: hive-dev@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HIVE-3852) Multi-groupby optimization fails when same distinct column is used twice or more 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-3852?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13556585#comment-13556585 ] Hudson commented on HIVE-3852: ------------------------------ Integrated in Hive-trunk-hadoop2 #70 (See [https://builds.apache.org/job/Hive-trunk-hadoop2/70/]) HIVE-3852 Multi-groupby optimization fails when same distinct column is used twice or more (Navis via namit) (Revision 1434600) Result = FAILURE namit : http://svn.apache.org/viewcvs.cgi/?root=Apache-SVN&view=rev&rev=1434600 Files : * /hive/trunk/ql/src/java/org/apache/hadoop/hive/ql/parse/SemanticAnalyzer.java * /hive/trunk/ql/src/test/queries/clientpositive/groupby10.q * /hive/trunk/ql/src/test/results/clientpositive/groupby10.q.out > Multi-groupby optimization fails when same distinct column is used twice or more > -------------------------------------------------------------------------------- > > Key: HIVE-3852 > URL: https://issues.apache.org/jira/browse/HIVE-3852 > Project: Hive > Issue Type: Bug > Components: Query Processor > Reporter: Navis > Assignee: Navis > Priority: Trivial > Fix For: 0.11.0 > > Attachments: HIVE-3852.D7737.1.patch > > > {code} > FROM INPUT > INSERT OVERWRITE TABLE dest1 > SELECT INPUT.key, sum(distinct substr(INPUT.value,5)), count(distinct substr(INPUT.value,5)) GROUP BY INPUT.key > INSERT OVERWRITE TABLE dest2 > SELECT INPUT.key, sum(distinct substr(INPUT.value,5)), avg(distinct substr(INPUT.value,5)) GROUP BY INPUT.key; > {code} > fails with exception FAILED: IndexOutOfBoundsException Index: 0,Size: 0 -- 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