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 1B0A3200C1B for ; Tue, 14 Feb 2017 22:42:57 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 19A7E160B5F; Tue, 14 Feb 2017 21:42:57 +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 64246160B45 for ; Tue, 14 Feb 2017 22:42:56 +0100 (CET) Received: (qmail 92239 invoked by uid 500); 14 Feb 2017 21:42:55 -0000 Mailing-List: contact commits-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hive-dev@hive.apache.org Delivered-To: mailing list commits@hive.apache.org Received: (qmail 92228 invoked by uid 99); 14 Feb 2017 21:42:55 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Feb 2017 21:42:55 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 682B3DFD8C; Tue, 14 Feb 2017 21:42:55 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: hashutosh@apache.org To: commits@hive.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: hive git commit: HIVE-15894 : Add logical semijoin config in sqlstd safe list (Ashutosh Chauhan via Thejas Nair) Date: Tue, 14 Feb 2017 21:42:55 +0000 (UTC) archived-at: Tue, 14 Feb 2017 21:42:57 -0000 Repository: hive Updated Branches: refs/heads/master 2433fed55 -> b14ef6d6f HIVE-15894 : Add logical semijoin config in sqlstd safe list (Ashutosh Chauhan via Thejas Nair) Signed-off-by: Ashutosh Chauhan Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/b14ef6d6 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/b14ef6d6 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/b14ef6d6 Branch: refs/heads/master Commit: b14ef6d6f6c3ec02be94c52ab95f4214d82cb3c6 Parents: 2433fed Author: Ashutosh Chauhan Authored: Mon Feb 13 12:10:06 2017 -0800 Committer: Ashutosh Chauhan Committed: Tue Feb 14 13:42:18 2017 -0800 ---------------------------------------------------------------------- common/src/java/org/apache/hadoop/hive/conf/HiveConf.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/b14ef6d6/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java ---------------------------------------------------------------------- diff --git a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java index 0e4f1f6..0bff243 100644 --- a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java +++ b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java @@ -1082,7 +1082,7 @@ public class HiveConf extends Configuration { HIVE_CBO_SHOW_WARNINGS("hive.cbo.show.warnings", true, "Toggle display of CBO warnings like missing column stats"), AGGR_JOIN_TRANSPOSE("hive.transpose.aggr.join", false, "push aggregates through join"), - SEMIJOIN_CONVERSION("hive.enable.semijoin.conversion", true, "convert group by followed by inner equi join into semijoin"), + SEMIJOIN_CONVERSION("hive.optimize.semijoin.conversion", true, "convert group by followed by inner equi join into semijoin"), HIVE_COLUMN_ALIGNMENT("hive.order.columnalignment", true, "Flag to control whether we want to try to align" + "columns in operators such as Aggregate or Join so that we try to reduce the number of shuffling stages"), @@ -1909,7 +1909,7 @@ public class HiveConf extends Configuration { new TimeValidator(TimeUnit.MILLISECONDS), "Time interval describing how often the reaper runs"), WRITE_SET_REAPER_INTERVAL("hive.writeset.reaper.interval", "60s", new TimeValidator(TimeUnit.MILLISECONDS), "Frequency of WriteSet reaper runs"), - + MERGE_CARDINALITY_VIOLATION_CHECK("hive.merge.cardinality.check", true, "Set to true to ensure that each SQL Merge statement ensures that for each row in the target\n" + "table there is at most 1 matching row in the source table per SQL Specification."),