dedsec-terminal opened a new pull request, #13000: URL: https://github.com/apache/gluten/pull/13000
## What changes are proposed in this pull request? Following the removal of Spark 3.2 and Spark 3.3 support (#12902, #12981), Spark 3.4 is the lowest supported profile. Therefore, `testWithMinSparkVersion(name, "3.4")` is constant-true across all supported Spark profiles (3.4, 3.5, 4.0, 4.1). This PR: 1. Replaces all 57 occurrences of `testWithMinSparkVersion(..., "3.4")` across 14 test suite files with direct `test(...)` calls. 2. Removes uncalled helper methods `testWithRangeSparkVersion` and `ignoreWithSpecifiedSparkVersion` in `GlutenQueryTest`. 3. Keeps all live version gates on 3.5, 4.0, and 4.1 unchanged. Fixes #12992. ## How was this patch tested? - Verified all 57 call sites across the 14 suites were replaced with direct `test(...)` calls. - Verified live gates on 3.5, 4.0, and 4.1 remain intact. - Verified 0 remaining callers or declarations of `testWithRangeSparkVersion` and `ignoreWithSpecifiedSparkVersion`. - Verified `git diff --check` and confirmed line lengths comply with Scalafmt/Scalastyle 100-character limit. ## Was this patch authored or co-authored using generative AI tooling? Generated-by: Antigravity -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
