Uses of Interface
se.liu.ida.hefquin.engine.queryplan.physical.NaryPhysicalOp
Packages that use NaryPhysicalOp
Package
Description
-
Uses of NaryPhysicalOp in se.liu.ida.hefquin.engine.queryplan.physical
Subinterfaces of NaryPhysicalOp in se.liu.ida.hefquin.engine.queryplan.physicalModifier and TypeInterfaceDescriptioninterface
An interface for any type ofPhysicalOperator
that directly implements a particular logical operator that has an arbitrary arity.Methods in se.liu.ida.hefquin.engine.queryplan.physical that return NaryPhysicalOp -
Uses of NaryPhysicalOp in se.liu.ida.hefquin.engine.queryplan.physical.impl
Classes in se.liu.ida.hefquin.engine.queryplan.physical.impl that implement NaryPhysicalOpModifier and TypeClassDescriptionclass
Base class for physical operators that implement some form of a multi-way join algorithm.class
Base class for physical operators that implement some form of a multi-way left join algorithm.class
A physical operator that implements a multi-way union.Fields in se.liu.ida.hefquin.engine.queryplan.physical.impl declared as NaryPhysicalOpModifier and TypeFieldDescriptionprotected final NaryPhysicalOp
PhysicalPlanWithNaryRootImpl.rootOp
Methods in se.liu.ida.hefquin.engine.queryplan.physical.impl that return NaryPhysicalOpConstructors in se.liu.ida.hefquin.engine.queryplan.physical.impl with parameters of type NaryPhysicalOpModifierConstructorDescriptionprotected
PhysicalPlanWithNaryRootImpl
(NaryPhysicalOp rootOp, List<PhysicalPlan> subPlans) Instead of creating such a plan directly using this constructor, usePhysicalPlanFactory
.protected
PhysicalPlanWithNaryRootImpl
(NaryPhysicalOp rootOp, PhysicalPlan... subPlans) Instead of creating such a plan directly using this constructor, usePhysicalPlanFactory
. -
Uses of NaryPhysicalOp in se.liu.ida.hefquin.engine.queryplan.utils
Methods in se.liu.ida.hefquin.engine.queryplan.utils that return NaryPhysicalOpModifier and TypeMethodDescriptionstatic NaryPhysicalOp
LogicalToPhysicalOpConverter.convert
(LogicalOpMultiwayJoin lop) static NaryPhysicalOp
LogicalToPhysicalOpConverter.convert
(LogicalOpMultiwayLeftJoin lop) static NaryPhysicalOp
LogicalToPhysicalOpConverter.convert
(LogicalOpMultiwayUnion lop) static NaryPhysicalOp
LogicalToPhysicalOpConverter.convert
(NaryLogicalOp lop) Methods in se.liu.ida.hefquin.engine.queryplan.utils with parameters of type NaryPhysicalOpModifier and TypeMethodDescriptionstatic PhysicalPlan
PhysicalPlanFactory.createPlan
(NaryPhysicalOp rootOp, List<PhysicalPlan> subplans) Creates a physical plan with the given root operator.static PhysicalPlan
PhysicalPlanFactory.createPlan
(NaryPhysicalOp rootOp, PhysicalPlan... subplans) Creates a physical plan with the given root operator.