diff --git ql/src/java/org/apache/hadoop/hive/ql/exec/CommonJoinOperator.java ql/src/java/org/apache/hadoop/hive/ql/exec/CommonJoinOperator.java index 03194a4..3110b0a 100644 --- ql/src/java/org/apache/hadoop/hive/ql/exec/CommonJoinOperator.java +++ ql/src/java/org/apache/hadoop/hive/ql/exec/CommonJoinOperator.java @@ -705,13 +705,9 @@ protected void checkAndGenObject() throws HiveException { } if (allOne) { - LOG.info("calling genAllOneUniqueJoinObject"); genAllOneUniqueJoinObject(); - LOG.info("called genAllOneUniqueJoinObject"); } else { - LOG.trace("calling genUniqueJoinObject"); genUniqueJoinObject(0, 0); - LOG.trace("called genUniqueJoinObject"); } } else { // does any result need to be emitted @@ -753,17 +749,11 @@ protected void checkAndGenObject() throws HiveException { } if (!hasEmpty && !mayHasMoreThanOne) { - LOG.trace("calling genAllOneUniqueJoinObject"); genAllOneUniqueJoinObject(); - LOG.trace("called genAllOneUniqueJoinObject"); } else if (!hasEmpty && !hasLeftSemiJoin) { - LOG.trace("calling genUniqueJoinObject"); genUniqueJoinObject(0, 0); - LOG.trace("called genUniqueJoinObject"); } else { - LOG.trace("calling genObject"); genJoinObject(); - LOG.trace("called genObject"); } } Arrays.fill(aliasFilterTags, (byte)0xff);