You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Mithun Radhakrishnan (JIRA)" <ji...@apache.org> on 2015/02/02 22:47:34 UTC

[jira] [Created] (HIVE-9553) Fix log-line in Partition Pruner

Mithun Radhakrishnan created HIVE-9553:
------------------------------------------

             Summary: Fix log-line in Partition Pruner
                 Key: HIVE-9553
                 URL: https://issues.apache.org/jira/browse/HIVE-9553
             Project: Hive
          Issue Type: Bug
          Components: Logging
            Reporter: Mithun Radhakrishnan
            Assignee: Mithun Radhakrishnan
            Priority: Trivial


Minor issue in logging the prune-expression in the PartitionPruner:

{code:title=PartitionPruner.java|titleBGColor=#F7D6C1|bgColor=#FFFFCE}
LOG.trace("prune Expression = " + prunerExpr == null ? "" : prunerExpr);
{code}

Given the operator precedence order, this should read:

{code:title=PartitionPruner.java|titleBGColor=#F7D6C1|bgColor=#FFFFCE}
LOG.trace("prune Expression = " + (prunerExpr == null ? "" : prunerExpr));
{code}




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)