Class RangeUnboundedFollowingOverFrame

java.lang.Object
org.apache.flink.table.runtime.operators.over.frame.UnboundedFollowingOverFrame
org.apache.flink.table.runtime.operators.over.frame.RangeUnboundedFollowingOverFrame
All Implemented Interfaces:
Serializable, OverWindowFrame

public class RangeUnboundedFollowingOverFrame extends UnboundedFollowingOverFrame
The range unboundedFollowing window frame calculates frames with the following SQL form: ... RANGE BETWEEN [window frame preceding] AND UNBOUNDED FOLLOWING [window frame preceding] ::= [unsigned_value_specification] PRECEDING | CURRENT ROW

e.g.: ... RANGE BETWEEN 1 PRECEDING AND UNBOUNDED FOLLOWING.

See Also: