Skip to content

Commit

Permalink
[SPARK-40821][SQL][SS][FOLLOWUP] Fix available version for new functi…
Browse files Browse the repository at this point in the history
…on window_time

### What changes were proposed in this pull request?

This PR fixes the incorrect available version for new function `window_time` to 3.4.0 which is upcoming release for master branch.

### Why are the changes needed?

The version information is incorrect.

### Does this PR introduce _any_ user-facing change?

No

### How was this patch tested?

N/A

Closes apache#38368 from HeartSaVioR/SPARK-40821-follow-up-minor-version-fix.

Authored-by: Jungtaek Lim <[email protected]>
Signed-off-by: Jungtaek Lim <[email protected]>
  • Loading branch information
HeartSaVioR committed Oct 24, 2022
1 parent 9140795 commit b7a88cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import org.apache.spark.sql.types._
A2 2021-01-01 00:00:00 2021-01-01 00:05:00 2021-01-01 00:04:59.999999 1
""",
group = "datetime_funcs",
since = "3.3.0")
since = "3.4.0")
// scalastyle:on line.size.limit line.contains.tab
case class WindowTime(windowColumn: Expression)
extends UnaryExpression
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3788,7 +3788,7 @@ object functions {
* StructType { start: Timestamp, end: Timestamp }
*
* @group datetime_funcs
* @since 3.3.0
* @since 3.4.0
*/
def window_time(windowColumn: Column): Column = withExpr {
WindowTime(windowColumn.expr)
Expand Down

0 comments on commit b7a88cd

Please sign in to comment.