Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Won't Fix
-
2.3.0
-
None
-
None
Description
Add the new APIs (introduced by https://github.com/apache/spark/pull/18814) to PySpark. Also update the rangeBetween API
/** * Window function: returns the special frame boundary that represents the first row in the * window partition. * * @group window_funcs * @since 2.3.0 */ def unboundedPreceding(): Column = Column(UnboundedPreceding) /** * Window function: returns the special frame boundary that represents the last row in the * window partition. * * @group window_funcs * @since 2.3.0 */ def unboundedFollowing(): Column = Column(UnboundedFollowing) /** * Window function: returns the special frame boundary that represents the current row in the * window partition. * * @group window_funcs * @since 2.3.0 */ def currentRow(): Column = Column(CurrentRow)
Attachments
Issue Links
- relates to
-
SPARK-25842 Deprecate APIs introduced in SPARK-21608
- Resolved
- links to