org.apache.spark.sql.catalyst.optimizer.PreOrderOptimize.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql-booster Show documentation
Show all versions of sql-booster Show documentation
A library for optimizing/rewriting/auditing SQL and easy to plugin new strategies
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