Object

quasar

Optimizer

Related Doc: package quasar

Permalink

object Optimizer

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Optimizer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Component[A] extends AnyRef

    Permalink
  2. final case class EquiCond[A](run0: (Fix[LogicalPlan], Fix[LogicalPlan]) ⇒ A) extends Component[A] with Product with Serializable

    Permalink
  3. final case class LeftCond[A](run0: (Fix[LogicalPlan]) ⇒ A) extends Component[A] with Product with Serializable

    Permalink
  4. final case class NeitherCond[A](run0: A) extends Component[A] with Product with Serializable

    Permalink
  5. final case class OtherCond[A](run0: (Fix[LogicalPlan], Fix[LogicalPlan]) ⇒ A) extends Component[A] with Product with Serializable

    Permalink
  6. final case class RightCond[A](run0: (Fix[LogicalPlan]) ⇒ A) extends Component[A] with Product with Serializable

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. implicit val ComponentApplicative: Applicative[Component]

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def elideLets[T[_[_]]](implicit arg0: Recursive[T], arg1: FunctorT[T]): (LogicalPlan[T[LogicalPlan]]) ⇒ Predef.Option[LogicalPlan[T[LogicalPlan]]]

    Permalink

    Like simplifyƒ, but eliminates _all_ Let (and any bound Free) nodes.

  8. val elideTypeCheckƒ: Algebra[LogicalPlan, Fix[LogicalPlan]]

    Permalink
  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. val namesƒ: Algebra[LogicalPlan, Predef.Set[Predef.Symbol]]

    Permalink
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. val optimize: (Fix[LogicalPlan]) ⇒ Fix[LogicalPlan]

    Permalink

    Apply universal, type-oblivious transformations intended to improve the performance of a query regardless of the backend.

    Apply universal, type-oblivious transformations intended to improve the performance of a query regardless of the backend. The input is expected to come straight from the SQL^2 compiler or another source of un-optimized queries.

  20. def preferProjections(t: Fix[LogicalPlan]): Fix[LogicalPlan]

    Permalink
  21. def preserveFree0[A](x: (Fix[LogicalPlan], A))(f: (A) ⇒ Fix[LogicalPlan]): Fix[LogicalPlan]

    Permalink
  22. val rewriteCrossJoinsƒ: (LogicalPlan[(Fix[LogicalPlan], Fix[LogicalPlan])]) ⇒ State[NameGen, Fix[LogicalPlan]]

    Permalink

    Rewrite joins and subsequent filtering so that: 1) Filtering that is equivalent to an equi-join is rewritten into the join condition.

    Rewrite joins and subsequent filtering so that: 1) Filtering that is equivalent to an equi-join is rewritten into the join condition. 2) Filtering that refers to only side of the join is hoisted prior to the join. The input plan must have been simplified already so that the structure is in a canonical form for inspection.

  23. val shapeƒ: GAlgebra[[β$0$](Fix[LogicalPlan], β$0$), LogicalPlan, Predef.Option[Predef.List[Fix[LogicalPlan]]]]

    Permalink
  24. def simplify(t: Fix[LogicalPlan]): Fix[LogicalPlan]

    Permalink
  25. def simplifyƒ[T[_[_]]](implicit arg0: Recursive[T], arg1: Corecursive[T]): (LogicalPlan[T[LogicalPlan]]) ⇒ Predef.Option[LogicalPlan[T[LogicalPlan]]]

    Permalink
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  28. def uniqueName[F[_]](prefix: Predef.String, plans: F[Fix[LogicalPlan]])(implicit arg0: Functor[F], arg1: Foldable[F]): Predef.Symbol

    Permalink
  29. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped