You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ng...@apache.org on 2018/07/27 14:35:39 UTC

hive git commit: HIVE-20156: Avoid printing exception stacktrace to STDERR (Andrew Sherman, reviewed by Naveen Gangam)

Repository: hive
Updated Branches:
  refs/heads/master 369490860 -> 9aac80609


HIVE-20156: Avoid printing exception stacktrace to STDERR (Andrew Sherman, reviewed by Naveen Gangam)


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

Branch: refs/heads/master
Commit: 9aac80609718fab8cffe4e839ec6cd669643e3ec
Parents: 3694908
Author: Naveen Gangam <ng...@apache.org>
Authored: Fri Jul 27 10:35:27 2018 -0400
Committer: Naveen Gangam <ng...@apache.org>
Committed: Fri Jul 27 10:35:27 2018 -0400

----------------------------------------------------------------------
 ql/src/java/org/apache/hadoop/hive/ql/exec/JoinOperator.java | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/9aac8060/ql/src/java/org/apache/hadoop/hive/ql/exec/JoinOperator.java
----------------------------------------------------------------------
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/JoinOperator.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/JoinOperator.java
index de8c0ca..e995ab7 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/exec/JoinOperator.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/JoinOperator.java
@@ -132,7 +132,6 @@ public class JoinOperator extends CommonJoinOperator<JoinDesc> implements Serial
       }
       storage[alias].addRow(nr);
     } catch (Exception e) {
-      e.printStackTrace();
       throw new HiveException(e);
     }
   }