Return-Path: X-Original-To: apmail-drill-dev-archive@www.apache.org Delivered-To: apmail-drill-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 B79C217963 for ; Tue, 10 Mar 2015 17:12:39 +0000 (UTC) Received: (qmail 34895 invoked by uid 500); 10 Mar 2015 17:12:39 -0000 Delivered-To: apmail-drill-dev-archive@drill.apache.org Received: (qmail 34845 invoked by uid 500); 10 Mar 2015 17:12:39 -0000 Mailing-List: contact dev-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.apache.org Delivered-To: mailing list dev@drill.apache.org Received: (qmail 34721 invoked by uid 99); 10 Mar 2015 17:12:39 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Mar 2015 17:12:39 +0000 Date: Tue, 10 Mar 2015 17:12:39 +0000 (UTC) From: "Sean Hsuan-Yi Chu (JIRA)" To: dev@drill.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Resolved] (DRILL-2376) UNION ALL on Aggregates with GROUP BY returns incomplete results 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/DRILL-2376?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sean Hsuan-Yi Chu resolved DRILL-2376. -------------------------------------- Resolution: Fixed Resolved in commit #: 0368adf0c > UNION ALL on Aggregates with GROUP BY returns incomplete results > ---------------------------------------------------------------- > > Key: DRILL-2376 > URL: https://issues.apache.org/jira/browse/DRILL-2376 > Project: Apache Drill > Issue Type: Bug > Components: Query Planning & Optimization > Affects Versions: 0.8.0 > Reporter: Abhishek Girish > Assignee: Sean Hsuan-Yi Chu > > The following query returns incomplete results: > {code:sql} > select x > from > (SELECT Sum(ss_ext_sales_price) x > FROM store_sales > UNION ALL > SELECT Sum(cs_ext_sales_price) x > FROM catalog_sales) tmp > GROUP BY x; > Results from Drill: > +------------+ > | x | > +------------+ > | 3658019159.35 | > +------------+ > 1 row selected (3.474 seconds) > Results from Postgres: > x > --------------- > 5265207074.51 > 3658019159.35 > (2 rows) > {code} > Removing GROUP BY returns the right results: > {code:sql} > select x > from > (SELECT Sum(ss_ext_sales_price) x > FROM store_sales > UNION ALL > SELECT Sum(cs_ext_sales_price) x > FROM catalog_sales) tmp; > Results from Drill: > +------------+ > | x | > +------------+ > | 5265207074.51 | > | 3658019159.35 | > +------------+ > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)