Class LogicalToPhysicalPlanConverterImpl.Worker
java.lang.Object
se.liu.ida.hefquin.engine.queryplan.utils.LogicalToPhysicalPlanConverterImpl.Worker
- Enclosing class:
- LogicalToPhysicalPlanConverterImpl
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionconvert
(LogicalPlan lp, boolean keepMultiwayJoins) protected List<PhysicalPlan>
convertChildren
(LogicalPlan lp, boolean keepMultiwayJoins) Converts the sub-plans of the given logical plan (if any) and returns a list of the resulting physical plans.protected PhysicalPlan
createPhysicalPlan
(LogicalOperator lop, List<PhysicalPlan> children, boolean keepMultiwayJoins) protected PhysicalPlan
createPhysicalPlanForMultiwayJoin
(LogicalOpMultiwayJoin lop, List<PhysicalPlan> children, boolean keepMultiwayJoins) protected PhysicalPlan
createPhysicalPlanForMultiwayLeftJoin
(LogicalOpMultiwayLeftJoin lop, List<PhysicalPlan> children, boolean keepMultiwayJoins) protected PhysicalPlan
createPhysicalPlanForMultiwayUnion
(LogicalOpMultiwayUnion lop, List<PhysicalPlan> children) protected PhysicalPlan
createPhysicalPlanWithBinaryRoot
(BinaryLogicalOp lop, PhysicalPlan child1, PhysicalPlan child2) protected PhysicalPlan
createPhysicalPlanWithNaryRoot
(NaryLogicalOp lop, List<PhysicalPlan> children, boolean keepMultiwayJoins) protected PhysicalPlan
protected PhysicalPlan
-
Field Details
-
convertedSubPlans
-
-
Constructor Details
-
Worker
protected Worker()
-
-
Method Details
-
convert
-
convertChildren
Converts the sub-plans of the given logical plan (if any) and returns a list of the resulting physical plans. The order of the physical plans in the returned list is such that the i-th physical plan in the list is the physical plan that has been created for the i-th sub-plan of the given logical plan. For logical plans that do not contain any sub-plans, an empty list is returned. -
createPhysicalPlan
protected PhysicalPlan createPhysicalPlan(LogicalOperator lop, List<PhysicalPlan> children, boolean keepMultiwayJoins) -
createPhysicalPlanWithNullaryRoot
-
createPhysicalPlanWithUnaryRoot
-
createPhysicalPlanWithBinaryRoot
protected PhysicalPlan createPhysicalPlanWithBinaryRoot(BinaryLogicalOp lop, PhysicalPlan child1, PhysicalPlan child2) -
createPhysicalPlanWithNaryRoot
protected PhysicalPlan createPhysicalPlanWithNaryRoot(NaryLogicalOp lop, List<PhysicalPlan> children, boolean keepMultiwayJoins) -
createPhysicalPlanForMultiwayJoin
protected PhysicalPlan createPhysicalPlanForMultiwayJoin(LogicalOpMultiwayJoin lop, List<PhysicalPlan> children, boolean keepMultiwayJoins) -
createPhysicalPlanForMultiwayLeftJoin
protected PhysicalPlan createPhysicalPlanForMultiwayLeftJoin(LogicalOpMultiwayLeftJoin lop, List<PhysicalPlan> children, boolean keepMultiwayJoins) -
createPhysicalPlanForMultiwayUnion
protected PhysicalPlan createPhysicalPlanForMultiwayUnion(LogicalOpMultiwayUnion lop, List<PhysicalPlan> children)
-