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 Type
    Method
    Description
    void
    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.
    void
    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

      void addCardinalities(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.
    • addCardinalities

      void addCardinalities(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.