Return-Path: X-Original-To: apmail-hive-dev-archive@www.apache.org Delivered-To: apmail-hive-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id A53DB9B10 for ; Mon, 18 Mar 2013 00:32:15 +0000 (UTC) Received: (qmail 55599 invoked by uid 500); 18 Mar 2013 00:32:15 -0000 Delivered-To: apmail-hive-dev-archive@hive.apache.org Received: (qmail 55445 invoked by uid 500); 18 Mar 2013 00:32:15 -0000 Mailing-List: contact dev-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 dev@hive.apache.org Received: (qmail 55429 invoked by uid 500); 18 Mar 2013 00:32:14 -0000 Delivered-To: apmail-hadoop-hive-dev@hadoop.apache.org Received: (qmail 55424 invoked by uid 99); 18 Mar 2013 00:32:14 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 18 Mar 2013 00:32:14 +0000 Date: Mon, 18 Mar 2013 00:32:14 +0000 (UTC) From: "Namit Jain (JIRA)" To: hive-dev@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (HIVE-4146) bug with hive.auto.convert.join.noconditionaltask with outer joins 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/HIVE-4146?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Namit Jain updated HIVE-4146: ----------------------------- Attachment: hive.4146.4.patch > bug with hive.auto.convert.join.noconditionaltask with outer joins > ------------------------------------------------------------------ > > Key: HIVE-4146 > URL: https://issues.apache.org/jira/browse/HIVE-4146 > Project: Hive > Issue Type: Bug > Components: Query Processor > Reporter: Namit Jain > Assignee: Namit Jain > Attachments: hive.4146.1.patch, hive.4146.2.patch, hive.4146.3.patch, hive.4146.4.patch > > > Consider the following scenario: > create table s1 as select * from src where key = 0; > set hive.auto.convert.join.noconditionaltask=false; > SELECT * FROM s1 src1 LEFT OUTER JOIN s1 src2 ON (src1.key = src2.key AND src2.key > 10); > gives correct results > 0 val_0 NULL NULL > 0 val_0 NULL NULL > 0 val_0 NULL NULL > whereas it gives no results with hive.auto.convert.join.noconditionaltask set > to true -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira