You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by vi...@apache.org on 2018/08/02 15:31:58 UTC

hive git commit: HIVE-20239 : Do Not Print StackTraces to STDERR in MapJoinProcessor (Anurag Mantripragada reviewed by Vihang Karajgaonkar)

Repository: hive
Updated Branches:
  refs/heads/master 5c02fee28 -> 6917821fc


HIVE-20239 : Do Not Print StackTraces to STDERR in MapJoinProcessor (Anurag Mantripragada reviewed by Vihang Karajgaonkar)


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

Branch: refs/heads/master
Commit: 6917821fcd24c6f5b497e2bb17782c5fa528017f
Parents: 5c02fee
Author: Vihang Karajgaonkar <vi...@apache.org>
Authored: Thu Aug 2 08:10:11 2018 -0700
Committer: Vihang Karajgaonkar <vi...@apache.org>
Committed: Thu Aug 2 08:10:11 2018 -0700

----------------------------------------------------------------------
 .../java/org/apache/hadoop/hive/ql/optimizer/MapJoinProcessor.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/6917821f/ql/src/java/org/apache/hadoop/hive/ql/optimizer/MapJoinProcessor.java
----------------------------------------------------------------------
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/optimizer/MapJoinProcessor.java b/ql/src/java/org/apache/hadoop/hive/ql/optimizer/MapJoinProcessor.java
index 275a31f..bae80f3 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/optimizer/MapJoinProcessor.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/optimizer/MapJoinProcessor.java
@@ -233,7 +233,7 @@ public class MapJoinProcessor extends Transform {
     } catch (Exception e) {
       e.printStackTrace();
       throw new SemanticException("Failed to generate new mapJoin operator " +
-          "by exception : " + e.getMessage());
+          "by exception : ", e);
     }
   }