All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.spark.sql.catalyst.optimizer.PreOrderOptimize.scala Maven / Gradle / Ivy

Go to download

A library for optimizing/rewriting/auditing SQL and easy to plugin new strategies

There is a newer version: 0.4.0
Show newest version
package org.apache.spark.sql.catalyst.optimizer

import org.apache.spark.sql.catalyst.plans.logical.LogicalPlan
import org.apache.spark.sql.catalyst.rules.RuleExecutor

object PreOptimizeRewrite extends RuleExecutor[LogicalPlan] {
  val batches =
    Batch("Before join rewrite", FixedPoint(100),
      EliminateOuterJoin, PushPredicateThroughJoin) :: Nil
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy