Details
Description
MapJoinProcessor.java
} catch (Exception e) { e.printStackTrace(); throw new SemanticException("Failed to generate new mapJoin operator " + "by exception : " + e.getMessage()); }
Please change to... something like...
} catch (Exception e) { throw new SemanticException("Failed to generate new mapJoin operator", e); }