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 131C211644 for ; Mon, 4 Aug 2014 22:21:37 +0000 (UTC) Received: (qmail 11835 invoked by uid 500); 4 Aug 2014 22:21:37 -0000 Delivered-To: apmail-drill-issues-archive@drill.apache.org Received: (qmail 11807 invoked by uid 500); 4 Aug 2014 22:21:37 -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 11798 invoked by uid 99); 4 Aug 2014 22:21:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Aug 2014 22:21:36 +0000 X-ASF-Spam-Status: No, hits=-2000.7 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; Mon, 04 Aug 2014 22:21:38 +0000 Received: (qmail 10368 invoked by uid 99); 4 Aug 2014 22:21:12 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Aug 2014 22:21:12 +0000 Date: Mon, 4 Aug 2014 22:21:12 +0000 (UTC) From: "Steven Phillips (JIRA)" To: issues@drill.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Assigned] (DRILL-1210) Tpch query 10 over text data (SF 0.01) fails with a verification issue 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-1210?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Steven Phillips reassigned DRILL-1210: -------------------------------------- Assignee: Steven Phillips > Tpch query 10 over text data (SF 0.01) fails with a verification issue > ---------------------------------------------------------------------- > > Key: DRILL-1210 > URL: https://issues.apache.org/jira/browse/DRILL-1210 > Project: Apache Drill > Issue Type: Bug > Components: Execution - Flow, Storage - Text & CSV > Reporter: Rahul Challapalli > Assignee: Steven Phillips > Fix For: 0.5.0 > > Attachments: actual.tsv, expected.tsv > > > git.commit.id.abbrev=caa8b78 > select > c.c_custkey, > c.c_name, > sum(l.l_extendedprice * (1 - l.l_discount)) as revenue, > c.c_acctbal, > n.n_name, > c.c_address, > c.c_phone, > c.c_comment > from > customer c, > orders o, > lineitem l, > nation n > where > c.c_custkey = o.o_custkey > and l.l_orderkey = o.o_orderkey > and o.o_orderdate >= date '1994-03-01' > and o.o_orderdate < date '1994-03-01' + interval '3' month > and l.l_returnflag = 'R' > and c.c_nationkey = n.n_nationkey > group by > c.c_custkey, > c.c_name, > c.c_acctbal, > c.c_phone, > n.n_name, > c.c_address, > c.c_comment > order by > revenue desc > limit 20 > I attached the expected and actual results. Let me know if you need anything else -- This message was sent by Atlassian JIRA (v6.2#6252)