This is an automated email from the ASF dual-hosted git repository.

maxgekk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/master by this push:
     new 24293cab2de [SPARK-43780][SQL][FOLLOWUP] Fix the config doc 
`spark.sql.optimizer.decorrelateJoinPredicate.enabled`
24293cab2de is described below

commit 24293cab2de06a50ffd9f4871073e75481665bb8
Author: Max Gekk <max.g...@gmail.com>
AuthorDate: Tue Aug 22 15:32:32 2023 +0300

    [SPARK-43780][SQL][FOLLOWUP] Fix the config doc 
`spark.sql.optimizer.decorrelateJoinPredicate.enabled`
    
    ### What changes were proposed in this pull request?
    Add s" to the doc of the SQL config 
`spark.sql.optimizer.decorrelateJoinPredicate.enabled`.
    
    ### Why are the changes needed?
    To output the desired config name.
    
    ### Does this PR introduce _any_ user-facing change?
    No.
    
    ### How was this patch tested?
    By running CI.
    
    ### Was this patch authored or co-authored using generative AI tooling?
    No.
    
    Closes #42607 from MaxGekk/followup-agubichev_spark-43780-corr-predicate.
    
    Authored-by: Max Gekk <max.g...@gmail.com>
    Signed-off-by: Max Gekk <max.g...@gmail.com>
---
 sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala 
b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
index 9b421251cf6..ca155683ec0 100644
--- a/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
+++ b/sql/catalyst/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala
@@ -4363,7 +4363,7 @@ object SQLConf {
       .internal()
       .doc("Decorrelate scalar and lateral subqueries with correlated 
references in join " +
         "predicates. This configuration is only effective when " +
-        "'${DECORRELATE_INNER_QUERY_ENABLED.key}' is true.")
+        s"'${DECORRELATE_INNER_QUERY_ENABLED.key}' is true.")
       .version("4.0.0")
       .booleanConf
       .createWithDefault(true)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to