[SPARK-50422][SQL] Make Parameterized SQL queries of SparkSession.sql API GA#48965
Closed
dongjoon-hyun wants to merge 1 commit into
Closed
[SPARK-50422][SQL] Make Parameterized SQL queries of SparkSession.sql API GA#48965dongjoon-hyun wants to merge 1 commit into
Parameterized SQL queries of SparkSession.sql API GA#48965dongjoon-hyun wants to merge 1 commit into
Conversation
yaooqinn
approved these changes
Nov 26, 2024
3e61574 to
cfd772b
Compare
cfd772b to
655edf5
Compare
Member
Author
|
Thank you, @yaooqinn . |
Member
Author
|
And, WDYT as the main author of this feature, @MaxGekk ? |
HyukjinKwon
approved these changes
Nov 26, 2024
zhengruifeng
approved these changes
Nov 26, 2024
MaxGekk
approved these changes
Nov 26, 2024
Member
|
+1, LGTM. Merging to master. |
Member
Author
|
Thank you all! |
dongjoon-hyun
added a commit
to apache/spark-connect-swift
that referenced
this pull request
May 3, 2025
### What changes were proposed in this pull request? This PR aims to support `Parameterized SQL queries` in `sql` API. ### Why are the changes needed? For feature parity, we had better support this GA feature. - apache/spark#38864 (Since Spark 3.4.0) - apache/spark#40623 (Since Spark 3.4.0) - apache/spark#41568 (Since Spark 3.5.0) - apache/spark#48965 (GA Since Spark 4.0.0) ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass the CIs. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #103 from dongjoon-hyun/SPARK-51986. Authored-by: Dongjoon Hyun <dongjoon@apache.org> Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changes were proposed in this pull request?
This PR aims to make
Parameterized SQL queriesofSparkSession.sqlAPI GA in Apache Spark 4.0.0.Why are the changes needed?
Apache Spark has been supported
Parameterized SQL queriesbecause they are very convenient usage for the users .sql()#38864 (Since Spark 3.4.0)sql()#41568 (Since Spark 3.5.0)It's time to make it GA by removing
Experimentaltags since this feature has been serving well for a long time.Does this PR introduce any user-facing change?
No, there is no behavior change.
How was this patch tested?
Pass the CIs.
Was this patch authored or co-authored using generative AI tooling?
No.