[SPARK-58436][SQL][DOC] Add missing @since tags in functions.scala - #57643
Closed
uros-b wants to merge 2 commits into
Closed
[SPARK-58436][SQL][DOC] Add missing @since tags in functions.scala#57643uros-b wants to merge 2 commits into
uros-b wants to merge 2 commits into
Conversation
uros-b
force-pushed
the
apidoc-functions-expr-since
branch
from
July 29, 2026 22:42
0ec26c2 to
5a11891
Compare
zhengruifeng
approved these changes
Jul 31, 2026
zhengruifeng
pushed a commit
that referenced
this pull request
Jul 31, 2026
### What changes were proposed in this pull request? Adds missing `since` tags to the four `group`-documented functions in the shared SQL functions API (`functions.scala`) that lacked one: `expr` (1.5.0), `substring_index` (1.5.0), and both `udaf(Aggregator)` overloads (3.0.0). ### Why are the changes needed? Every other public function in `functions.scala` carries an `since` tag; these four were the only `group`-documented outliers. Versions were confirmed against each function's originating commit / first release tag and the corresponding Python `versionadded`. After this change no `group`-documented function in the file is missing `since` ### Does this PR introduce _any_ user-facing change? No (scaladoc only; no signature change). ### How was this patch tested? Doc-only change. No tests needed. ### Was this patch authored or co-authored using generative AI tooling? Generated-by: Claude Code (Opus 4.8) Closes #57643 from uros-b/apidoc-functions-expr-since. Authored-by: Uros Bojanic <221401595+uros-b@users.noreply.github.com> Signed-off-by: Ruifeng Zheng <ruifengz@apache.org> (cherry picked from commit 256d453) Signed-off-by: Ruifeng Zheng <ruifengz@apache.org>
Contributor
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?
Adds missing
@sincetags to the four@group-documented functions in the shared SQL functions API (functions.scala) that lacked one:expr(1.5.0),substring_index(1.5.0), and bothudaf(Aggregator)overloads (3.0.0).Why are the changes needed?
Every other public function in
functions.scalacarries an@sincetag; these four were the only@group-documented outliers. Versions were confirmed against each function's originating commit / first release tag and the corresponding Pythonversionadded. After this change no@group-documented function in the file is missing@sinceDoes this PR introduce any user-facing change?
No (scaladoc only; no signature change).
How was this patch tested?
Doc-only change. No tests needed.
Was this patch authored or co-authored using generative AI tooling?
Generated-by: Claude Code (Opus 4.8)