Skip to content

Commit 409c661

Browse files
awdavidsonHyukjinKwon
authored andcommitted
[SPARK-40819][SQL][FOLLOWUP] Update SqlConf version for nanosAsLong configuration
As requested by HyukjinKwon in #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 <[email protected]> Signed-off-by: Hyukjin Kwon <[email protected]>
1 parent a76bd9d commit 409c661

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
@@ -3790,7 +3790,7 @@ object SQLConf {
37903790
val LEGACY_PARQUET_NANOS_AS_LONG = buildConf("spark.sql.legacy.parquet.nanosAsLong")
37913791
.internal()
37923792
.doc("When true, the Parquet's nanos precision timestamps are converted to SQL long values.")
3793-
.version("3.2.3")
3793+
.version("3.2.4")
37943794
.booleanConf
37953795
.createWithDefault(false)
37963796

0 commit comments

Comments
 (0)