Skip to content

Commit 0a4fbf6

Browse files
Qingchuan LyuQingchuan Lyu
authored andcommitted
Merge upstream main: resolve conflicts by keeping Spark 3.2 deprecation
2 parents 2118983 + 60bf4b7 commit 0a4fbf6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

backends-velox/src/test/scala/org/apache/gluten/execution/VeloxHashJoinSuite.scala

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,7 @@ class VeloxHashJoinSuite extends VeloxWholeStageTransformerSuite {
9292

9393
// The computing is combined into one single whole stage transformer.
9494
val wholeStages = plan.collect { case wst: WholeStageTransformer => wst }
95-
if (
96-
SparkShimLoader.getSparkVersion.startsWith("3.5.") ||
97-
SparkShimLoader.getSparkVersion.startsWith("4.0.")
98-
) {
95+
if (isSparkVersionGE("3.5")) {
9996
assert(wholeStages.length == 5)
10097
} else {
10198
assert(wholeStages.length == 3)

0 commit comments

Comments
 (0)