Skip to content

Commit 3f76bd4

Browse files
committed
[SPARK-27083][SQL][FOLLOW-UP] Rename spark.sql.subquery.reuse to spark.sql.execution.subquery.reuse.enabled
### What changes were proposed in this pull request? This PR is to rename spark.sql.subquery.reuse to spark.sql.execution.subquery.reuse.enabled ### Why are the changes needed? Make it consistent and clear. ### Does this PR introduce any user-facing change? N/A. This is a [new conf added in Spark 3.0](apache#23998) ### How was this patch tested? N/A Closes apache#27346 from gatorsmile/spark27083. Authored-by: Xiao Li <[email protected]> Signed-off-by: Xiao Li <[email protected]>
1 parent 4847f73 commit 3f76bd4

File tree

1 file changed

+1
-1
lines changed
  • sql/catalyst/src/main/scala/org/apache/spark/sql/internal

1 file changed

+1
-1
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ object SQLConf {
10531053
.booleanConf
10541054
.createWithDefault(true)
10551055

1056-
val SUBQUERY_REUSE_ENABLED = buildConf("spark.sql.subquery.reuse")
1056+
val SUBQUERY_REUSE_ENABLED = buildConf("spark.sql.execution.subquery.reuse.enabled")
10571057
.internal()
10581058
.doc("When true, the planner will try to find out duplicated subqueries and re-use them.")
10591059
.booleanConf

0 commit comments

Comments
 (0)