Uses of Interface
se.liu.ida.hefquin.engine.queryplan.logical.UnaryLogicalOp
Packages that use UnaryLogicalOp
Package
Description
-
Uses of UnaryLogicalOp in se.liu.ida.hefquin.engine.queryplan.logical
Methods in se.liu.ida.hefquin.engine.queryplan.logical that return UnaryLogicalOp -
Uses of UnaryLogicalOp in se.liu.ida.hefquin.engine.queryplan.logical.impl
Classes in se.liu.ida.hefquin.engine.queryplan.logical.impl that implement UnaryLogicalOpModifier and TypeClassDescriptionclass
class
class
class
class
class
class
class
class
class
Methods in se.liu.ida.hefquin.engine.queryplan.logical.impl that return UnaryLogicalOpConstructors in se.liu.ida.hefquin.engine.queryplan.logical.impl with parameters of type UnaryLogicalOpModifierConstructorDescriptionLogicalPlanWithUnaryRootImpl
(UnaryLogicalOp rootOp, LogicalPlan subPlan) -
Uses of UnaryLogicalOp in se.liu.ida.hefquin.engine.queryplan.physical
Methods in se.liu.ida.hefquin.engine.queryplan.physical that return UnaryLogicalOp -
Uses of UnaryLogicalOp in se.liu.ida.hefquin.engine.queryplan.physical.impl
Fields in se.liu.ida.hefquin.engine.queryplan.physical.impl declared as UnaryLogicalOpModifier and TypeFieldDescriptionprotected final UnaryLogicalOp
BaseForPhysicalOpSingleInputJoin.lop
Methods in se.liu.ida.hefquin.engine.queryplan.physical.impl that return UnaryLogicalOpModifier and TypeMethodDescriptionBaseForPhysicalOpSingleInputJoin.getLogicalOperator()
PhysicalOpFilter.getLogicalOperator()
PhysicalOpGlobalToLocal.getLogicalOperator()
PhysicalOpLocalToGlobal.getLogicalOperator()
Constructors in se.liu.ida.hefquin.engine.queryplan.physical.impl with parameters of type UnaryLogicalOpModifierConstructorDescriptionprotected
The given logical operator is expected to be of one of the following six types:LogicalOpTPAdd
,LogicalOpTPOptAdd
,LogicalOpBGPAdd
,LogicalOpBGPOptAdd
,LogicalOpGPAdd
, orLogicalOpGPOptAdd
. -
Uses of UnaryLogicalOp in se.liu.ida.hefquin.engine.queryplan.utils
Methods in se.liu.ida.hefquin.engine.queryplan.utils that return UnaryLogicalOpModifier and TypeMethodDescriptionstatic UnaryLogicalOp
LogicalOpUtils.createLogicalAddOpFromLogicalReqOp
(LogicalOpRequest<?, ?> reqOp) static UnaryLogicalOp
LogicalOpUtils.createLogicalAddOpFromPhysicalReqOp
(PhysicalOperator op) static UnaryLogicalOp
LogicalOpUtils.createLogicalOptAddOpFromPhysicalReqOp
(PhysicalOperator op) Methods in se.liu.ida.hefquin.engine.queryplan.utils with parameters of type UnaryLogicalOpModifier and TypeMethodDescriptionstatic UnaryPhysicalOp
LogicalToPhysicalOpConverter.convert
(UnaryLogicalOp lop) protected PhysicalPlan
LogicalToPhysicalPlanConverterImpl.Worker.createPhysicalPlanWithUnaryRoot
(UnaryLogicalOp lop, PhysicalPlan child) static PhysicalPlan
PhysicalPlanFactory.createPlan
(UnaryLogicalOp rootOp, PhysicalPlan subplan) Creates a physical plan in which the root operator is the default physical operator for the given logical operator, as perLogicalToPhysicalOpConverter
.static PhysicalPlan
PhysicalPlanFactory.extractRequestAsPlan
(UnaryLogicalOp lop) -
Uses of UnaryLogicalOp in se.liu.ida.hefquin.engine.queryproc.impl.loptimizer.heuristics
Methods in se.liu.ida.hefquin.engine.queryproc.impl.loptimizer.heuristics with parameters of type UnaryLogicalOpModifier and TypeMethodDescriptionprotected LogicalPlan
FilterPushDown.createPlanAfterPushingInSubPlan
(LogicalOpFilter parentFilterOp, UnaryLogicalOp childOp, LogicalPlan subPlanUnderChildOp, LogicalPlan inputPlan) protected LogicalPlan
FilterPushDown.createPlanForAddOpUnderFilter
(LogicalOpFilter parentFilterOp, UnaryLogicalOp childOp, LogicalPlan subPlanUnderChildOp, LogicalPlan inputPlan) Assumes that the given child operator is either aLogicalOpTPAdd
, aLogicalOpTPOptAdd
, aLogicalOpBGPAdd
, aLogicalOpBGPOptAdd
, aLogicalOpGPAdd
, or aLogicalOpGPOptAdd
.protected LogicalPlan
FilterPushDown.createPlanForL2GOrG2LUnderFilter
(LogicalOpFilter parentFilterOp, UnaryLogicalOp childOp, LogicalPlan subPlanUnderChildOp, LogicalPlan inputPlan) Assumes that the given child operator is either aLogicalOpLocalToGlobal
or aLogicalOpGlobalToLocal
.UnionPullUp.rewritePlanWithUnaryRootAndUnionChild
(UnaryLogicalOp rootOp, LogicalPlan subPlan) Based on the assumption that the given subplan has a union operator as its root operator, this function pulls up that union by pushing the given unary operator to be the root of each of the children of the union.