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 ED0F218CC8 for ; Wed, 29 Apr 2015 20:36:09 +0000 (UTC) Received: (qmail 86171 invoked by uid 500); 29 Apr 2015 20:36:09 -0000 Delivered-To: apmail-drill-issues-archive@drill.apache.org Received: (qmail 86145 invoked by uid 500); 29 Apr 2015 20:36:09 -0000 Mailing-List: contact issues-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 issues@drill.apache.org Received: (qmail 86135 invoked by uid 99); 29 Apr 2015 20:36:09 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 29 Apr 2015 20:36:09 +0000 Date: Wed, 29 Apr 2015 20:36:09 +0000 (UTC) From: "Rahul Challapalli (JIRA)" To: issues@drill.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Closed] (DRILL-1063) verification fails with merge join 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-1063?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Rahul Challapalli closed DRILL-1063. ------------------------------------ Verifed. Below is the testcase Functional/Passing/tpch-smoke/join02-merge.q > verification fails with merge join > ---------------------------------- > > Key: DRILL-1063 > URL: https://issues.apache.org/jira/browse/DRILL-1063 > Project: Apache Drill > Issue Type: Bug > Components: Functions - Drill > Reporter: Zhiyong Liu > Assignee: DrillCommitter > Priority: Critical > Fix For: 0.5.0 > > Attachments: DRILL-1063.patch > > > git.commit.id.abbrev=79c1502 > git.commit.id=79c1502c1e96596d4db302c2dd1c9f78d0f4d43d > /root/open-source-drill-test/testing/framework/resources/drill-smoke/tpch-smoke-passing/testcases/join06-merge.q : > alter session set `planner.enable_hashjoin` = false > /root/open-source-drill-test/testing/framework/resources/drill-smoke/tpch-smoke-passing/testcases/join06-merge.q : > select count(*) > from supplier s > join lineitem l on s.s_suppkey = l.l_suppkey > join orders o on o.o_orderkey = l.l_orderkey > where l.l_shipdate between date '1995-01-01' and date '1995-12-31' > /root/open-source-drill-test/testing/framework/resources/drill-smoke/tpch-smoke-passing/testcases/join06-merge.q : > alter session set `planner.enable_hashjoin` = true > Expected number of rows: 1 > Actual number of rows from Drill: 1 > Number of matching rows: 0 > Number of rows missing: 1 > Number of rows unexpected: 1 > These rows are not expected (first 10): > 8769 > These rows are missing (first 10): > 8773 (1 time(s)) > Likewise for /root/open-source-drill-test/testing/framework/resources/drill-smoke/tpch-smoke-passing/testcases/join02-merge.q : > select count(*) > from (select c.c_custkey > from customer c, orders o > where c.c_custkey = o.o_custkey) as foo > These rows are not expected (first 10): > 14990 > These rows are missing (first 10): > 15000 (1 time(s)) > Note that it makes no difference whether planner.enable_broadcast_join is turned on or off. -- This message was sent by Atlassian JIRA (v6.3.4#6332)