Class LagAggFunction.LagAcc<T>
- java.lang.Object
-
- org.apache.flink.table.runtime.functions.aggregate.LagAggFunction.LagAcc<T>
-
- Enclosing class:
- LagAggFunction<T>
public static class LagAggFunction.LagAcc<T> extends Object
Accumulator for LAG.
-
-
Field Summary
Fields Modifier and Type Field Description LinkedList<T>
buffer
T
defaultValue
int
offset
-
Constructor Summary
Constructors Constructor Description LagAcc()
-
-
-
Field Detail
-
offset
public int offset
-
defaultValue
public T defaultValue
-
buffer
public LinkedList<T> buffer
-
-