Interface PhysicalPlanWithBinaryRoot
- All Superinterfaces:
PhysicalPlan,QueryPlan
- All Known Implementing Classes:
PhysicalPlanWithBinaryRootImpl
-
Method Summary
Modifier and TypeMethodDescriptionReturns the root operator of this plan.Convenience method that always should return the same as what is returned by callingPhysicalPlan.getSubPlan(int)with a value of 0.Convenience method that always should return the same as what is returned by callingPhysicalPlan.getSubPlan(int)with a value of 1.Methods inherited from interface se.liu.ida.hefquin.engine.queryplan.physical.PhysicalPlan
getSubPlanMethods inherited from interface se.liu.ida.hefquin.engine.queryplan.base.QueryPlan
getExpectedVariables, getID, getQueryPlanningInfo, hasQueryPlanningInfo, isSamePlan, numberOfSubPlans
-
Method Details
-
getRootOperator
BinaryPhysicalOp getRootOperator()Description copied from interface:QueryPlanReturns the root operator of this plan.- Specified by:
getRootOperatorin interfacePhysicalPlan- Specified by:
getRootOperatorin interfaceQueryPlan
-
getSubPlan1
PhysicalPlan getSubPlan1()Convenience method that always should return the same as what is returned by callingPhysicalPlan.getSubPlan(int)with a value of 0. -
getSubPlan2
PhysicalPlan getSubPlan2()Convenience method that always should return the same as what is returned by callingPhysicalPlan.getSubPlan(int)with a value of 1.
-