diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/OperatorFactory.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/OperatorFactory.java index b61d37e..e97fcef 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/exec/OperatorFactory.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/OperatorFactory.java @@ -159,7 +159,6 @@ CompilationOpContext.class, OperatorDesc.class, VectorizationContext.class, VectorDesc.class); } catch (Exception e) { - e.printStackTrace(); throw new HiveException( "Constructor " + opClass.getSimpleName() + "(CompilationOpContext, OperatorDesc, VectorizationContext, VectorDesc) not found", e); @@ -170,7 +169,6 @@ cContext, conf, vContext, vectorDesc); return op; } catch (Exception e) { - e.printStackTrace(); throw new HiveException( "Error encountered calling constructor " + opClass.getSimpleName() + "(CompilationOpContext, OperatorDesc, VectorizationContext, VectorDesc)", e); @@ -197,7 +195,6 @@ return (Operator)opClass.getDeclaredConstructor( CompilationOpContext.class).newInstance(cContext); } catch (Exception e) { - e.printStackTrace(); throw new RuntimeException(e); } }