Class UnboundedOverWindowFrame
java.lang.Object
org.apache.flink.table.runtime.operators.over.frame.UnboundedOverWindowFrame
- All Implemented Interfaces:
Serializable,OverWindowFrame
The unbounded window frame calculates frames with the following SQL forms: ... (No Frame
Definition) ... BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUnboundedOverWindowFrame(GeneratedAggsHandleFunction aggsHandleFunction, org.apache.flink.table.types.logical.RowType valueType) -
Method Summary
Modifier and TypeMethodDescriptionvoidopen(ExecutionContext ctx) Open to init withExecutionContext.voidPrepare for next partition.org.apache.flink.table.data.RowDataprocess(int index, org.apache.flink.table.data.RowData current) return the ACC of the window frame.
-
Constructor Details
-
UnboundedOverWindowFrame
public UnboundedOverWindowFrame(GeneratedAggsHandleFunction aggsHandleFunction, org.apache.flink.table.types.logical.RowType valueType)
-
-
Method Details
-
open
Description copied from interface:OverWindowFrameOpen to init withExecutionContext.- Specified by:
openin interfaceOverWindowFrame- Throws:
Exception
-
prepare
Description copied from interface:OverWindowFramePrepare for next partition.- Specified by:
preparein interfaceOverWindowFrame- Throws:
Exception
-
process
public org.apache.flink.table.data.RowData process(int index, org.apache.flink.table.data.RowData current) throws Exception Description copied from interface:OverWindowFramereturn the ACC of the window frame.- Specified by:
processin interfaceOverWindowFrame- Throws:
Exception
-