From 36bbcd3950628818151e4b17a7c23079de514c5d Mon Sep 17 00:00:00 2001 From: Yuan Zhou Date: Mon, 6 Nov 2023 11:58:59 +0800 Subject: [PATCH] enable build side selection Signed-off-by: Yuan Zhou --- .../io/glutenproject/backendsapi/velox/VeloxBackend.scala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/backends-velox/src/main/scala/io/glutenproject/backendsapi/velox/VeloxBackend.scala b/backends-velox/src/main/scala/io/glutenproject/backendsapi/velox/VeloxBackend.scala index e94efb536c76d..26e6b4cb8c436 100644 --- a/backends-velox/src/main/scala/io/glutenproject/backendsapi/velox/VeloxBackend.scala +++ b/backends-velox/src/main/scala/io/glutenproject/backendsapi/velox/VeloxBackend.scala @@ -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 @@ -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 } } @@ -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 } }