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

gurwls223 pushed a commit to branch branch-3.4
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-3.4 by this push:
     new 9fad8a3874a [SPARK-40819][SQL][FOLLOWUP] Update SqlConf version for 
nanosAsLong configuration
9fad8a3874a is described below

commit 9fad8a3874ae2126f8dc8a01d1f9a328fee9f085
Author: awdavidson <54780428+awdavid...@users.noreply.github.com>
AuthorDate: Thu Feb 9 09:02:12 2023 +0900

    [SPARK-40819][SQL][FOLLOWUP] Update SqlConf version for nanosAsLong 
configuration
    
    As requested by HyukjinKwon in https://github.com/apache/spark/pull/38312  
NB: This change needs to be backported
    
    ### What changes were proposed in this pull request?
    
    Update version set for "spark.sql.legacy.parquet.nanosAsLong"  
configuration in SqlConf. This update is required because the previous PR set 
version to `3.2.3` which has already been released. Updating to version `3.2.4` 
will correctly reflect when this configuration element was added
    
    ### Why are the changes needed?
    
    Correctness and to complete SPARK-40819
    
    ### Does this PR introduce _any_ user-facing change?
    
    No, this is merely so this configuration element has the correct version
    
    ### How was this patch tested?
    
    N/A
    
    Closes #39943 from awdavidson/SPARK-40819_sql-conf.
    
    Authored-by: awdavidson <54780428+awdavid...@users.noreply.github.com>
    Signed-off-by: Hyukjin Kwon <gurwls...@apache.org>
    (cherry picked from commit 409c661542c4b966876f0af4119803de25670649)
    Signed-off-by: Hyukjin Kwon <gurwls...@apache.org>
---
 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 abe47c3720d..34295d1c42a 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
@@ -3790,7 +3790,7 @@ object SQLConf {
   val LEGACY_PARQUET_NANOS_AS_LONG = 
buildConf("spark.sql.legacy.parquet.nanosAsLong")
     .internal()
     .doc("When true, the Parquet's nanos precision timestamps are converted to 
SQL long values.")
-    .version("3.2.3")
+    .version("3.2.4")
     .booleanConf
     .createWithDefault(false)
 


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

Reply via email to