You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ha...@apache.org on 2017/12/08 22:08:29 UTC

hive git commit: HIVE-18251 : Loosen restriction for some checks (Ashutosh Chauhan via Jesus Camacho Rodriguez)

Repository: hive
Updated Branches:
  refs/heads/master 36f0d89f0 -> 1d5303523


HIVE-18251 : Loosen restriction for some checks (Ashutosh Chauhan via Jesus Camacho Rodriguez)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/1d530352
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/1d530352
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/1d530352

Branch: refs/heads/master
Commit: 1d5303523b7fdc3cc4c915957272d4192000b019
Parents: 36f0d89
Author: Ashutosh Chauhan <ha...@apache.org>
Authored: Thu Dec 7 17:57:34 2017 -0800
Committer: Ashutosh Chauhan <ha...@apache.org>
Committed: Fri Dec 8 14:07:36 2017 -0800

----------------------------------------------------------------------
 common/src/java/org/apache/hadoop/hive/conf/HiveConf.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/1d530352/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 8b2b333..adfa139 100644
--- a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
+++ b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
@@ -1085,7 +1085,7 @@ public class HiveConf extends Configuration {
         "Enabling strict type safety checks disallows the following:\n" +
         "  Comparing bigints and strings.\n" +
         "  Comparing bigints and doubles."),
-    HIVE_STRICT_CHECKS_CARTESIAN("hive.strict.checks.cartesian.product", true,
+    HIVE_STRICT_CHECKS_CARTESIAN("hive.strict.checks.cartesian.product", false,
         "Enabling strict Cartesian join checks disallows the following:\n" +
         "  Cartesian product (cross join)."),
     HIVE_STRICT_CHECKS_BUCKETING("hive.strict.checks.bucketing", true,