This is an automated email from the ASF dual-hosted git repository. changchen pushed a commit to branch feature/41 in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
commit 7bbd378b7123d03179a1016d54fb23face3e526e Author: Chang chen <[email protected]> AuthorDate: Tue Dec 30 22:45:32 2025 +0800 [Fix] Refactor Spark version checks in VeloxHashJoinSuite to improve readability and maintainability --- .../src/test/scala/org/apache/gluten/execution/VeloxHashJoinSuite.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends-velox/src/test/scala/org/apache/gluten/execution/VeloxHashJoinSuite.scala b/backends-velox/src/test/scala/org/apache/gluten/execution/VeloxHashJoinSuite.scala index 604c0e841c..5958baa377 100644 --- a/backends-velox/src/test/scala/org/apache/gluten/execution/VeloxHashJoinSuite.scala +++ b/backends-velox/src/test/scala/org/apache/gluten/execution/VeloxHashJoinSuite.scala @@ -94,7 +94,7 @@ class VeloxHashJoinSuite extends VeloxWholeStageTransformerSuite { val wholeStages = plan.collect { case wst: WholeStageTransformer => wst } if (isSparkVersionLE("3.2")) { assert(wholeStages.length == 1) - } else if ( isSparkVersionGE("3.5")) { + } else if (isSparkVersionGE("3.5")) { assert(wholeStages.length == 5) } else { assert(wholeStages.length == 3) --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
