Return-Path: X-Original-To: apmail-drill-issues-archive@minotaur.apache.org Delivered-To: apmail-drill-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 076BC118E7 for ; Thu, 24 Jul 2014 16:39:03 +0000 (UTC) Received: (qmail 90035 invoked by uid 500); 24 Jul 2014 16:39:02 -0000 Delivered-To: apmail-drill-issues-archive@drill.apache.org Received: (qmail 90009 invoked by uid 500); 24 Jul 2014 16:39:02 -0000 Mailing-List: contact issues-help@drill.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.incubator.apache.org Delivered-To: mailing list issues@drill.incubator.apache.org Received: (qmail 90000 invoked by uid 99); 24 Jul 2014 16:39:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Jul 2014 16:39:02 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 24 Jul 2014 16:39:04 +0000 Received: (qmail 89326 invoked by uid 99); 24 Jul 2014 16:38:38 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 24 Jul 2014 16:38:38 +0000 Date: Thu, 24 Jul 2014 16:38:38 +0000 (UTC) From: "Rahul Challapalli (JIRA)" To: issues@drill.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (DRILL-1184) TPCH Query 19 on top of text data (0.01 GB) does not match the baselines generated through postgres MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/DRILL-1184?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rahul Challapalli updated DRILL-1184: ------------------------------------- Attachment: views.txt > TPCH Query 19 on top of text data (0.01 GB) does not match the baselines generated through postgres > --------------------------------------------------------------------------------------------------- > > Key: DRILL-1184 > URL: https://issues.apache.org/jira/browse/DRILL-1184 > Project: Apache Drill > Issue Type: Bug > Components: Execution - Flow, Storage - Text & CSV > Reporter: Rahul Challapalli > Attachments: views.txt > > > git.commit.id.abbrev=e5c2da0 > Query : > select > sum(l.l_extendedprice* (1 - l.l_discount)) as revenue > from > lineitem l, > part p > where > p.p_partkey = l.l_partkey > and ( > ( > p.p_brand = 'Brand#41' > and p.p_container in ('SM CASE', 'SM BOX', 'SM PACK', 'SM PKG') > and l.l_quantity >= 2 and l.l_quantity <= 2 + 10 > and p.p_size between 1 and 5 > and l.l_shipmode in ('AIR', 'AIR REG') > and l.l_shipinstruct = 'DELIVER IN PERSON' > ) > or > ( > p.p_brand = 'Brand#13' > and p.p_container in ('MED BAG', 'MED BOX', 'MED PKG', 'MED PACK') > and l.l_quantity >= 14 and l.l_quantity <= 14 + 10 > and p.p_size between 1 and 10 > and l.l_shipmode in ('AIR', 'AIR REG') > and l.l_shipinstruct = 'DELIVER IN PERSON' > ) > or > ( > p.p_brand = 'Brand#55' > and p.p_container in ('LG CASE', 'LG BOX', 'LG PACK', 'LG PKG') > and l.l_quantity >= 23 and l.l_quantity <= 23 + 10 > and p.p_size between 1 and 15 > and l.l_shipmode in ('AIR', 'AIR REG') > and l.l_shipinstruct = 'DELIVER IN PERSON' > )) > Results : > - Drill : 108600 > - Postgres : 106598.6290 > Attached the DDL for the views created before running this query. -- This message was sent by Atlassian JIRA (v6.2#6252)