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 761ba5e commit 2d2119fCopy full SHA for 2d2119f
backends-velox/src/test/scala/org/apache/gluten/execution/VeloxHashJoinSuite.scala
@@ -94,7 +94,10 @@ class VeloxHashJoinSuite extends VeloxWholeStageTransformerSuite {
94
val wholeStages = plan.collect { case wst: WholeStageTransformer => wst }
95
if (SparkShimLoader.getSparkVersion.startsWith("3.2.")) {
96
assert(wholeStages.length == 1)
97
- } else if (SparkShimLoader.getSparkVersion.startsWith("3.5.") || SparkShimLoader.getSparkVersion.startsWith("4.0.")) {
+ } else if (
98
+ SparkShimLoader.getSparkVersion.startsWith("3.5.") ||
99
+ SparkShimLoader.getSparkVersion.startsWith("4.0.")
100
+ ) {
101
assert(wholeStages.length == 5)
102
} else {
103
assert(wholeStages.length == 3)
0 commit comments