We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2118983 + 60bf4b7 commit 0a4fbf6Copy full SHA for 0a4fbf6
backends-velox/src/test/scala/org/apache/gluten/execution/VeloxHashJoinSuite.scala
@@ -92,10 +92,7 @@ class VeloxHashJoinSuite extends VeloxWholeStageTransformerSuite {
92
93
// The computing is combined into one single whole stage transformer.
94
val wholeStages = plan.collect { case wst: WholeStageTransformer => wst }
95
- if (
96
- SparkShimLoader.getSparkVersion.startsWith("3.5.") ||
97
- SparkShimLoader.getSparkVersion.startsWith("4.0.")
98
- ) {
+ if (isSparkVersionGE("3.5")) {
99
assert(wholeStages.length == 5)
100
} else {
101
assert(wholeStages.length == 3)
0 commit comments