Class RangeUnboundedPrecedingOverFrame

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

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

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

See Also: