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 E22FE103EB for ; Thu, 29 May 2014 16:59:29 +0000 (UTC) Received: (qmail 76879 invoked by uid 500); 29 May 2014 16:59:29 -0000 Delivered-To: apmail-drill-issues-archive@drill.apache.org Received: (qmail 76845 invoked by uid 500); 29 May 2014 16:59:29 -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 76835 invoked by uid 99); 29 May 2014 16:59:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 May 2014 16:59:29 +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; Thu, 29 May 2014 16:59:29 +0000 Received: (qmail 76265 invoked by uid 99); 29 May 2014 16:59:04 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 29 May 2014 16:59:04 +0000 Date: Thu, 29 May 2014 16:59:04 +0000 (UTC) From: "Jacques Nadeau (JIRA)" To: issues@drill.incubator.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (DRILL-617) TPCH: query 14 verification fails 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-617?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14012531#comment-14012531 ] Jacques Nadeau commented on DRILL-617: -------------------------------------- Spot manual verifications shows correct results other than floating point variations with latest master. Please update verification framework to correctly identify these. > TPCH: query 14 verification fails > --------------------------------- > > Key: DRILL-617 > URL: https://issues.apache.org/jira/browse/DRILL-617 > Project: Apache Drill > Issue Type: Bug > Reporter: Zhiyong Liu > Priority: Blocker > > 1. Set up drill test framework (see https://github.com/zhiyongliu/incubator-drill/tree/master/testing) and generate TCP H dataset with a scale factor of about 500MB. > 2. Query file (modified from original by drill dev, and further modified as follows): > select > 100.00 * sum(case > when p.p_type like 'PROMO%' > then l.l_extendedprice * (1 - l.l_discount) > else 0 > end) / sum(l.l_extendedprice * (1 - l.l_discount)) as promo_revenue > from > lineitem l, > part p > where > l.l_partkey = p.p_partkey > and l.l_shipdate >= date '1994-08-01' > and l.l_shipdate < date '1994-08-01' + interval '1' month; > 3. Drill build: > git.commit.id=1e0e4dfc96c8e7eb83659784dfbb85cd83d7d243 > 4. The baseline/expected results are generated via Oracle DB. > 5. Run the above query in the test framework, with verification turned on. > 6. Verification fails: > 2014-05-01 10:50:32 INFO TestVerifier:192 - These rows are not expected: > 2014-05-01 10:50:32 INFO TestVerifier:195 - 16.718056324303113 : 1 time(s). > 2014-05-01 10:50:32 INFO TestVerifier:202 - Total number of unexpected rows: 1 > 2014-05-01 10:50:32 INFO TestVerifier:206 - These rows are expected but are not in result set: > 2014-05-01 10:50:32 INFO TestVerifier:209 - 16.5451633 : 1 time(s). > 2014-05-01 10:50:32 INFO TestVerifier:216 - Total number of expected but missing: 1 -- This message was sent by Atlassian JIRA (v6.2#6252)