We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 291db45 commit 9f4d3b5Copy full SHA for 9f4d3b5
sql/core/src/main/scala/org/apache/spark/sql/execution/adaptive/AQEOptimizer.scala
@@ -32,7 +32,7 @@ class AQEOptimizer(conf: SQLConf) extends RuleExecutor[LogicalPlan] {
32
Batch("Eliminate Join to Empty Relation", Once, EliminateJoinToEmptyRelation)
33
)
34
35
- override protected def batches: Seq[Batch] = {
+ final override protected def batches: Seq[Batch] = {
36
val excludedRules = conf.getConf(SQLConf.ADAPTIVE_OPTIMIZER_EXCLUDED_RULES)
37
.toSeq.flatMap(Utils.stringToSeq)
38
defaultBatches.flatMap { batch =>
0 commit comments