BELUGA BEHR created HIVE-20239:
----------------------------------

             Summary: Do Not Print StackTraces to STDERR in MapJoinProcessor
                 Key: HIVE-20239
                 URL: https://issues.apache.org/jira/browse/HIVE-20239
             Project: Hive
          Issue Type: Improvement
    Affects Versions: 3.0.0
            Reporter: BELUGA BEHR
             Fix For: 4.0.0


{code:java|title=MapJoinProcessor.java}
    } catch (Exception e) {
      e.printStackTrace();
      throw new SemanticException("Failed to generate new mapJoin operator " +
          "by exception : " + e.getMessage());
    }
{code}

Please change to... something like...

{code}
    } catch (Exception e) {
      throw new SemanticException("Failed to generate new mapJoin operator", e);
    }
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to