Interface LogicalPlanWithBinaryRoot
- 
Method Summary
Modifier and TypeMethodDescriptionReturns the root operator of this plan.Convenience method that always should return the same as what is returned by callingLogicalPlan.getSubPlan(int)with a value of 0.Convenience method that always should return the same as what is returned by callingLogicalPlan.getSubPlan(int)with a value of 1.Methods inherited from interface se.liu.ida.hefquin.engine.queryplan.logical.LogicalPlan
getExpectedVariables, getSubPlan, numberOfSubPlans 
- 
Method Details
- 
getRootOperator
BinaryLogicalOp getRootOperator()Description copied from interface:LogicalPlanReturns the root operator of this plan.- Specified by:
 getRootOperatorin interfaceLogicalPlan
 - 
getSubPlan1
LogicalPlan getSubPlan1()Convenience method that always should return the same as what is returned by callingLogicalPlan.getSubPlan(int)with a value of 0. - 
getSubPlan2
LogicalPlan getSubPlan2()Convenience method that always should return the same as what is returned by callingLogicalPlan.getSubPlan(int)with a value of 1. 
 -