pyflink.table.expression.Expression.end#
- property Expression.end: pyflink.table.expression.Expression#
Returns the end time (exclusive) of a window when applied on a window reference.
e.g. if a window ends at 10:59:59.999 this property will return 11:00:00.000.
Example:
>>> orders.window(Tumble >>> .over(row_interval(2)) >>> .on(col("a")) >>> .alias("w")) \ >>> .group_by(col("c"), col("w")) \ >>> .select(col("c"), col("w").start, col("w").end, col("w").proctime)
See also
New in version 1.12.0.