[SPARK-33183][SQL][FOLLOW-UP] Update rule RemoveRedundantSorts config version

### What changes were proposed in this pull request?
This PR is a follow up for #30093 to updates the config `spark.sql.execution.removeRedundantSorts` version to 2.4.8.

### Why are the changes needed?
To update the rule version it has been backported to 2.4. #30194

### Does this PR introduce _any_ user-facing change?
No

### How was this patch tested?
N/A

Closes #30420 from allisonwang-db/spark-33183-follow-up.

Authored-by: allisonwang-db <66282705+allisonwang-db@users.noreply.github.com>
Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
This commit is contained in:
allisonwang-db 2020-11-19 00:12:22 -08:00 committed by Dongjoon Hyun
parent d5e7bd0cc4
commit ef2638c3e3
No known key found for this signature in database
GPG key ID: EDA00CE834F0FC5C

View file

@ -1277,7 +1277,7 @@ object SQLConf {
val REMOVE_REDUNDANT_SORTS_ENABLED = buildConf("spark.sql.execution.removeRedundantSorts")
.internal()
.doc("Whether to remove redundant physical sort node")
.version("3.1.0")
.version("2.4.8")
.booleanConf
.createWithDefault(true)