QueryPlanNode
, java.io.Serializable
, java.lang.Cloneable
public static class QueryPlan.LeftOuterJoinNode extends QueryPlan.SingleQueryPlanNode
To use - first the complete left table in the join must be marked with a name. Then the ON expression is evaluated to a single plan node. Then this plan node must be added to result in a left outer join. A tree for a left outer join may look as follows;
LeftOuterJoinNode | Join a = b / \ Marker GetTable T2 | GetTable T1
child
Constructor | Description |
---|---|
LeftOuterJoinNode(QueryPlanNode child,
java.lang.String complete_mark_name) |
Modifier and Type | Method | Description |
---|---|---|
Table |
evaluate(QueryContext context) |
Evaluates the node and returns the result as a Table.
|
java.lang.String |
titleString() |
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
child, clone, debugString, discoverCorrelatedVariables, discoverTableNames
public LeftOuterJoinNode(QueryPlanNode child, java.lang.String complete_mark_name)
public Table evaluate(QueryContext context)
QueryPlanNode
public java.lang.String titleString()
titleString
in class QueryPlan.SingleQueryPlanNode
Copyright © 2018. All rights reserved.