org.apache.pig.experimental.logical.relational
Class LOJoin

java.lang.Object
  extended by org.apache.pig.experimental.plan.Operator
      extended by org.apache.pig.experimental.logical.relational.LogicalRelationalOperator
          extended by org.apache.pig.experimental.logical.relational.LOJoin

public class LOJoin
extends LogicalRelationalOperator


Nested Class Summary
static class LOJoin.JOINTYPE
          Enum for the type of join
 
Field Summary
 
Fields inherited from class org.apache.pig.experimental.logical.relational.LogicalRelationalOperator
alias, lineNum, requestedParallelism, schema
 
Fields inherited from class org.apache.pig.experimental.plan.Operator
annotations, hashPrime, name, plan
 
Constructor Summary
LOJoin(LogicalPlan plan)
           
LOJoin(LogicalPlan plan, MultiMap<Integer,LogicalExpressionPlan> joinPlans, LOJoin.JOINTYPE jt, boolean[] isInner)
           
 
Method Summary
 void accept(PlanVisitor v)
          Accept a visitor at this node in the graph.
 Collection<LogicalExpressionPlan> getExpressionPlans()
          Get all of the expressions plans that are in this join.
 boolean[] getInnerFlags()
           
 Collection<LogicalExpressionPlan> getJoinPlan(int inputIndex)
           
 LOJoin.JOINTYPE getJoinType()
           
 LogicalSchema getSchema()
          Get the schema for the output of this relational operator.
 boolean isEqual(Operator other)
          This is like a shallow equals comparison.
 boolean isInner(int inputIndex)
           
 
Methods inherited from class org.apache.pig.experimental.logical.relational.LogicalRelationalOperator
checkEquality, getAlias, getLineNumber, getRequestedParallelisam, neverUseForRealSetSchema, resetSchema, setAlias, setRequestedParallelism, toString
 
Methods inherited from class org.apache.pig.experimental.plan.Operator
annotate, getAnnotation, getName, getPlan, removeAnnotation
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

LOJoin

public LOJoin(LogicalPlan plan)

LOJoin

public LOJoin(LogicalPlan plan,
              MultiMap<Integer,LogicalExpressionPlan> joinPlans,
              LOJoin.JOINTYPE jt,
              boolean[] isInner)
Method Detail

isInner

public boolean isInner(int inputIndex)

getInnerFlags

public boolean[] getInnerFlags()

getJoinType

public LOJoin.JOINTYPE getJoinType()

getJoinPlan

public Collection<LogicalExpressionPlan> getJoinPlan(int inputIndex)

getExpressionPlans

public Collection<LogicalExpressionPlan> getExpressionPlans()
Get all of the expressions plans that are in this join.

Returns:
collection of all expression plans.

getSchema

public LogicalSchema getSchema()
Description copied from class: LogicalRelationalOperator
Get the schema for the output of this relational operator. This does not merely return the schema variable. If schema is not yet set, this will attempt to construct it. Therefore it is abstract since each operator will need to construct its schema differently.

Specified by:
getSchema in class LogicalRelationalOperator
Returns:
the schema

accept

public void accept(PlanVisitor v)
            throws IOException
Description copied from class: Operator
Accept a visitor at this node in the graph.

Specified by:
accept in class Operator
Parameters:
v - Visitor to accept.
Throws:
IOException

isEqual

public boolean isEqual(Operator other)
Description copied from class: Operator
This is like a shallow equals comparison. It returns true if two operators have equivalent properties even if they are different objects. Here properties mean equivalent plan and equivalent name.

Specified by:
isEqual in class Operator
Returns:
true if two object have equivalent properties, else false


Copyright © ${year} The Apache Software Foundation