Interface LogicalPlanWithUnaryRoot
- All Superinterfaces:
LogicalPlan,QueryPlan
- All Known Implementing Classes:
LogicalPlanWithUnaryRootImpl
-
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.Methods inherited from interface se.liu.ida.hefquin.engine.queryplan.logical.LogicalPlan
getSubPlanMethods inherited from interface se.liu.ida.hefquin.engine.queryplan.base.QueryPlan
getExpectedVariables, getID, getQueryPlanningInfo, hasQueryPlanningInfo, isSamePlan, numberOfSubPlans
-
Method Details
-
getRootOperator
UnaryLogicalOp getRootOperator()Description copied from interface:QueryPlanReturns the root operator of this plan.- Specified by:
getRootOperatorin interfaceLogicalPlan- Specified by:
getRootOperatorin interfaceQueryPlan
-
getSubPlan
LogicalPlan getSubPlan()Convenience method that always should return the same as what is returned by callingLogicalPlan.getSubPlan(int)with a value of 0.
-