From ca5da1386bb73166535ad7b862c5756704920507 Mon Sep 17 00:00:00 2001 From: Ashutosh Chauhan Date: Thu, 7 Dec 2017 17:57:34 -0800 Subject: [PATCH] HIVE-18251 : Loosen restriction for some checks --- common/src/java/org/apache/hadoop/hive/conf/HiveConf.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 8b2b333e27..adfa13980e 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 @@ private static void populateLlapDaemonVarsSet(Set llapDaemonVarsSetLocal "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, -- 2.14.3 (Apple Git-98)