Class LogicalPlanUtils
java.lang.Object
se.liu.ida.hefquin.engine.queryplan.logical.LogicalPlanUtils
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
static class
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic int
countSubplans
(LogicalPlan plan) static LogicalPlan
createPlanWithBinaryJoin
(LogicalPlan subPlan1, LogicalPlan subPlan2) Creates aLogicalPlan
with aLogicalOpJoin
as root operator and the given plans as its two subplans.static LogicalPlan
createPlanWithBinaryUnion
(LogicalPlan subPlan1, LogicalPlan subPlan2) Creates aLogicalPlan
with aLogicalOpUnion
as root operator and the given plans as its two subplans.static LogicalPlan
createPlanWithMultiwayJoin
(List<LogicalPlan> subPlans) Creates aLogicalPlan
with aLogicalOpMultiwayJoin
as root operator and the given plans as its subplans.static LogicalPlan
createPlanWithMultiwayJoin
(LogicalPlan... subPlans) Creates aLogicalPlan
with aLogicalOpMultiwayJoin
as root operator and the given plans as its subplans.static LogicalPlan
createPlanWithMultiwayUnion
(List<LogicalPlan> subPlans) Creates aLogicalPlan
with aLogicalOpMultiwayUnion
as root operator and the given plans as its subplans.static LogicalPlan
createPlanWithMultiwayUnion
(LogicalPlan... subPlans) Creates aLogicalPlan
with aLogicalOpMultiwayUnion
as root operator and the given plans as its subplans.static LogicalPlan
createPlanWithSubPlans
(LogicalOperator rootOp, List<LogicalPlan> subPlans) Creates aLogicalPlan
with the given operator as root operator and the plans given in the list as subplans.static LogicalPlan
createPlanWithSubPlans
(LogicalOperator rootOp, LogicalPlan... subPlans) Creates aLogicalPlan
with the given operator as root operator and the given plans as subplans.static boolean
Returns true if the given logical plan is a source assignment.
-
Constructor Details
-
LogicalPlanUtils
public LogicalPlanUtils()
-
-
Method Details
-
createPlanWithBinaryJoin
Creates aLogicalPlan
with aLogicalOpJoin
as root operator and the given plans as its two subplans. -
createPlanWithMultiwayJoin
Creates aLogicalPlan
with aLogicalOpMultiwayJoin
as root operator and the given plans as its subplans. -
createPlanWithMultiwayJoin
Creates aLogicalPlan
with aLogicalOpMultiwayJoin
as root operator and the given plans as its subplans. -
createPlanWithBinaryUnion
Creates aLogicalPlan
with aLogicalOpUnion
as root operator and the given plans as its two subplans. -
createPlanWithMultiwayUnion
Creates aLogicalPlan
with aLogicalOpMultiwayUnion
as root operator and the given plans as its subplans. -
createPlanWithMultiwayUnion
Creates aLogicalPlan
with aLogicalOpMultiwayUnion
as root operator and the given plans as its subplans. -
createPlanWithSubPlans
Creates aLogicalPlan
with the given operator as root operator and the given plans as subplans. -
createPlanWithSubPlans
public static LogicalPlan createPlanWithSubPlans(LogicalOperator rootOp, List<LogicalPlan> subPlans) Creates aLogicalPlan
with the given operator as root operator and the plans given in the list as subplans. If the given operator is aNullaryLogicalOp
, then the given list may be null. -
isSourceAssignment
Returns true if the given logical plan is a source assignment. -
countSubplans
-