Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B4040200B6A for ; Mon, 22 Aug 2016 19:42:24 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B2B3A160A87; Mon, 22 Aug 2016 17:42:24 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 2BB5F160AB3 for ; Mon, 22 Aug 2016 19:42:24 +0200 (CEST) Received: (qmail 35701 invoked by uid 500); 22 Aug 2016 17:42:23 -0000 Mailing-List: contact issues-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hive.apache.org Delivered-To: mailing list issues@hive.apache.org Received: (qmail 35688 invoked by uid 99); 22 Aug 2016 17:42:23 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Aug 2016 17:42:23 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 45D052C0154 for ; Mon, 22 Aug 2016 17:42:23 +0000 (UTC) Date: Mon, 22 Aug 2016 17:42:23 +0000 (UTC) From: "Vineet Garg (JIRA)" To: issues@hive.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HIVE-14594) CBO: Calcite Operator To Hive Operator(Calcite Return Path): Fix wrong result in join_filters_overlap MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Mon, 22 Aug 2016 17:42:24 -0000 [ https://issues.apache.org/jira/browse/HIVE-14594?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15431267#comment-15431267 ] Vineet Garg commented on HIVE-14594: ------------------------------------ Just found this JIRA already logged for Calcite CALCITE-1338 > CBO: Calcite Operator To Hive Operator(Calcite Return Path): Fix wrong result in join_filters_overlap > ----------------------------------------------------------------------------------------------------- > > Key: HIVE-14594 > URL: https://issues.apache.org/jira/browse/HIVE-14594 > Project: Hive > Issue Type: Sub-task > Components: CBO > Reporter: Vineet Garg > Assignee: Vineet Garg > > Setup > {code} create table a as SELECT 100 as key, a.value as value FROM src LATERAL VIEW explode(array(40, 50, 60)) a as value limit 3; {code} > Query: > {code} select * from a left outer join a b on (a.key=b.key AND a.value=50 AND b.value=50) left outer join a c on (a.key=c.key AND a.value=60 AND c.value=60); {code} > Expected Result: > {code} > 100 40 NULL NULL NULL NULL > 100 50 100 50 NULL NULL > 100 60 NULL NULL 100 60 > {code} > Actual Result: > {code} > 100 40 NULL 50 NULL 60 > 100 50 100 50 NULL 60 > 100 60 NULL 50 100 60 > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)