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));