Skip to content

Commit

Permalink
enable build side selection
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Zhou <[email protected]>
  • Loading branch information
zhouyuan committed Nov 6, 2023
1 parent ba045c7 commit 36bbcd3
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import io.glutenproject.substrait.rel.LocalFilesNode.ReadFileFormat.{DwrfReadFor

import org.apache.spark.sql.catalyst.expressions.{Alias, CumeDist, DenseRank, Descending, Expression, Literal, NamedExpression, NthValue, PercentRank, RangeFrame, Rank, RowNumber, SortOrder, SpecialFrameBoundary, SpecifiedWindowFrame}
import org.apache.spark.sql.catalyst.expressions.aggregate.{AggregateExpression, Count, Sum}
import org.apache.spark.sql.catalyst.plans.{LeftOuter, LeftSemi, RightOuter}
import org.apache.spark.sql.catalyst.plans.JoinType
import org.apache.spark.sql.execution.SparkPlan
import org.apache.spark.sql.execution.aggregate.HashAggregateExec
Expand Down Expand Up @@ -209,7 +210,7 @@ object BackendSettings extends BackendSettingsApi {
// The file should be removed and we temporarily disable the improvement
// introduced by OPPRO-266 by commenting out the following prerequisite
// condition.
// case LeftOuter | LeftSemi => true
case LeftOuter | LeftSemi => true
case _ => false
}
}
Expand All @@ -226,7 +227,7 @@ object BackendSettings extends BackendSettingsApi {
// The file should be removed and we temporarily disable the improvement
// introduced by OPPRO-266 by commenting out the following prerequisite
// condition.
// case RightOuter => true
case RightOuter => true
case _ => false
}
}
Expand Down

0 comments on commit 36bbcd3

Please sign in to comment.