Interface PhysicalPlanWithBinaryRoot
-
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
getExpectedVariables, getSubPlan, numberOfSubPlans
-
Method Details
-
getRootOperator
BinaryPhysicalOp getRootOperator()Description copied from interface:PhysicalPlan
Returns the root operator of this plan.- Specified by:
getRootOperator
in interfacePhysicalPlan
-
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.
-