Interface CardinalityEstimationWorker
- All Known Implementing Classes:
CardinalityEstimationWorkerImpl
public interface CardinalityEstimationWorker
Implementations of this class complete the cardinality estimation process
for a given query plan (or for multiple such plans) in which every nullary
subplan is already annotated with its cardinality estimate.
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddCardinalities(LogicalPlan... plans) Determine a cardinality estimate for each of the given plans recursively, assuming that every nullary subplan within each of the given plans is already annotated with a cardinality estimate.voidaddCardinalities(PhysicalPlan... plans) Determine a cardinality estimate for each of the given plans recursively, assuming that every nullary subplan within each of the given plans is already annotated with a cardinality estimate.
-
Method Details
-
addCardinalities
Determine a cardinality estimate for each of the given plans recursively, assuming that every nullary subplan within each of the given plans is already annotated with a cardinality estimate. -
addCardinalities
Determine a cardinality estimate for each of the given plans recursively, assuming that every nullary subplan within each of the given plans is already annotated with a cardinality estimate.
-