You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by pr...@apache.org on 2016/05/03 01:11:51 UTC

hive git commit: HIVE-13546: Patch for HIVE-12893 is broken in branch-1 (Nemon Lou reviewed by Prasanth Jayachandran)

Repository: hive
Updated Branches:
  refs/heads/branch-1 d1e693bb4 -> 0ed03eec7


HIVE-13546: Patch for HIVE-12893 is broken in branch-1 (Nemon Lou reviewed by Prasanth Jayachandran)


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

Branch: refs/heads/branch-1
Commit: 0ed03eec76d9518325aa46c1eb27d9cd1931b0ac
Parents: d1e693b
Author: Prasanth Jayachandran <pr...@apache.org>
Authored: Mon May 2 18:11:42 2016 -0500
Committer: Prasanth Jayachandran <pr...@apache.org>
Committed: Mon May 2 18:11:42 2016 -0500

----------------------------------------------------------------------
 ql/src/java/org/apache/hadoop/hive/ql/optimizer/Optimizer.java | 6 ------
 1 file changed, 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/0ed03eec/ql/src/java/org/apache/hadoop/hive/ql/optimizer/Optimizer.java
----------------------------------------------------------------------
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/optimizer/Optimizer.java b/ql/src/java/org/apache/hadoop/hive/ql/optimizer/Optimizer.java
index b0d2771..035a537 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/optimizer/Optimizer.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/optimizer/Optimizer.java
@@ -159,12 +159,6 @@ public class Optimizer {
       transformations.add(new JoinReorder());
     }
 
-    if(HiveConf.getBoolVar(hiveConf, HiveConf.ConfVars.DYNAMICPARTITIONING) &&
-        HiveConf.getVar(hiveConf, HiveConf.ConfVars.DYNAMICPARTITIONINGMODE).equals("nonstrict") &&
-        HiveConf.getBoolVar(hiveConf, HiveConf.ConfVars.HIVEOPTSORTDYNAMICPARTITION) &&
-        !HiveConf.getBoolVar(hiveConf, HiveConf.ConfVars.HIVEOPTLISTBUCKETING)) {
-      transformations.add(new SortedDynPartitionOptimizer());
-    }
     if(HiveConf.getBoolVar(hiveConf, HiveConf.ConfVars.HIVEOPTREDUCEDEDUPLICATION)) {
       transformations.add(new ReduceSinkDeDuplication());
     }