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 3295F17B55 for ; Mon, 27 Oct 2014 23:44:34 +0000 (UTC) Received: (qmail 79423 invoked by uid 500); 27 Oct 2014 23:44:33 -0000 Delivered-To: apmail-hive-dev-archive@hive.apache.org Received: (qmail 79358 invoked by uid 500); 27 Oct 2014 23:44:33 -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 79347 invoked by uid 500); 27 Oct 2014 23:44:33 -0000 Delivered-To: apmail-hadoop-hive-dev@hadoop.apache.org Received: (qmail 79344 invoked by uid 99); 27 Oct 2014 23:44:33 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Oct 2014 23:44:33 +0000 Date: Mon, 27 Oct 2014 23:44:33 +0000 (UTC) From: "Jesus Camacho Rodriguez (JIRA)" To: hive-dev@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (HIVE-8625) Some union queries result in plans with many unions with CBO on MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Jesus Camacho Rodriguez created HIVE-8625: --------------------------------------------- Summary: Some union queries result in plans with many unions with CBO on Key: HIVE-8625 URL: https://issues.apache.org/jira/browse/HIVE-8625 Project: Hive Issue Type: Bug Components: CBO Affects Versions: 0.14.0, 0.15.0 Reporter: Jesus Camacho Rodriguez Priority: Minor For some queries e.g. union9, union16, we are getting plans with many binary unions when CBO is on. The reason is that an identity select operator is introduced after each union by the CBO; thus, the method that was merging the unions when the translation of the AST into a logical plan was being done is not executed, as it does not detect there is another union operator. With the fix in the patch attached, the method will merge the two unions if (1) one is the child of the other one, or (2) if one is a descendant of the other one and there is an identity select operator between them. -- This message was sent by Atlassian JIRA (v6.3.4#6332)