Github user hyunsik commented on a diff in the pull request:
https://github.com/apache/tajo/pull/529#discussion_r30209355
--- Diff:
tajo-core/src/main/java/org/apache/tajo/engine/planner/PhysicalPlannerImpl.java
---
@@ -464,14 +464,14 @@ private PhysicalExec
createLeftOuterJoinPlan(TaskAttemptContext context, JoinNod
case IN_MEMORY_HASH_JOIN:
LOG.info("Left Outer Join (" + plan.getPID() +") chooses [Hash
Join].");
return new HashLeftOuterJoinExec(context, plan, leftExec,
rightExec);
- case NESTED_LOOP_JOIN:
- //the right operand is too large, so we opt for NL
implementation of left outer join
- LOG.info("Left Outer Join (" + plan.getPID() +") chooses [Nested
Loop Join].");
- return new NLLeftOuterJoinExec(context, plan, leftExec,
rightExec);
+ case MERGE_JOIN:
--- End diff --
Good job. It should have removed earlier.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---