Uploaded image for project: 'Hive'
  1. Hive
  2. HIVE-9553

Fix log-line in Partition Pruner

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Trivial
    • Resolution: Fixed
    • 0.14.0
    • 1.2.0
    • Logging
    • None

    Description

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

      PartitionPruner.java
      LOG.trace("prune Expression = " + prunerExpr == null ? "" : prunerExpr);
      

      Given the operator precedence order, this should read:

      PartitionPruner.java
      LOG.trace("prune Expression = " + (prunerExpr == null ? "" : prunerExpr));
      

      Attachments

        1. HIVE-9553.1.patch
          0.8 kB
          Mithun Radhakrishnan

        Activity

          People

            mithun Mithun Radhakrishnan
            mithun Mithun Radhakrishnan
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: