Uses of Interface
se.liu.ida.hefquin.engine.queryplan.physical.BinaryPhysicalOp
Packages that use BinaryPhysicalOp
Package
Description
-
Uses of BinaryPhysicalOp in se.liu.ida.hefquin.engine.queryplan.physical
Subinterfaces of BinaryPhysicalOp 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 arity of two.Methods in se.liu.ida.hefquin.engine.queryplan.physical that return BinaryPhysicalOp -
Uses of BinaryPhysicalOp in se.liu.ida.hefquin.engine.queryplan.physical.impl
Classes in se.liu.ida.hefquin.engine.queryplan.physical.impl that implement BinaryPhysicalOpModifier and TypeClassDescriptionclass
Base class for physical operators that implement some form of a binary join algorithm; i.e., these algorithms consume two sequences of input solution mappings (produced by the two sub-plans under this operator) and join these the solution mappings from these two sequences locally (i.e., within in the engine rather than by interacting with any federation member).class
A physical operator that implements a binary union.class
A physical operator that implements the hash join algorithm to perform an inner join of two sequences of input solution mappings (produced by the two sub-plans under this operator).class
A physical operator that implements the hash join algorithm to perform a right outer join of two sequences of input solution mappings (produced by the two sub-plans under this operator).class
A physical operator that implements a local (!)class
A physical operator that implements the symmetric hash join algorithm to perform an inner join of two sequences of input solution mappings (produced by the two sub-plans under this operator).Methods in se.liu.ida.hefquin.engine.queryplan.physical.impl that return BinaryPhysicalOpConstructors in se.liu.ida.hefquin.engine.queryplan.physical.impl with parameters of type BinaryPhysicalOpModifierConstructorDescriptionprotected
PhysicalPlanWithBinaryRootImpl
(BinaryPhysicalOp rootOp, PhysicalPlan subPlan1, PhysicalPlan subPlan2) Instead of creating such a plan directly using this constructor, usePhysicalPlanFactory
. -
Uses of BinaryPhysicalOp in se.liu.ida.hefquin.engine.queryplan.utils
Methods in se.liu.ida.hefquin.engine.queryplan.utils that return BinaryPhysicalOpModifier and TypeMethodDescriptionstatic BinaryPhysicalOp
LogicalToPhysicalOpConverter.convert
(BinaryLogicalOp lop) static BinaryPhysicalOp
LogicalToPhysicalOpConverter.convert
(LogicalOpJoin lop) static BinaryPhysicalOp
LogicalToPhysicalOpConverter.convert
(LogicalOpRightJoin lop) static BinaryPhysicalOp
LogicalToPhysicalOpConverter.convert
(LogicalOpUnion lop) Methods in se.liu.ida.hefquin.engine.queryplan.utils with parameters of type BinaryPhysicalOpModifier and TypeMethodDescriptionstatic PhysicalPlan
PhysicalPlanFactory.createPlan
(BinaryPhysicalOp rootOp, PhysicalPlan subplan1, PhysicalPlan subplan2) Creates a physical plan with the given root operator.