Package org.apache.flink.table.api
Class OverWindowPartitioned
- java.lang.Object
-
- org.apache.flink.table.api.OverWindowPartitioned
-
@PublicEvolving public final class OverWindowPartitioned extends Object
Partially defined over window with partitioning.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OverWindowPartitionedOrdered
orderBy(org.apache.flink.table.expressions.Expression orderBy)
Specifies the time attribute on which rows are ordered.
-
-
-
Method Detail
-
orderBy
public OverWindowPartitionedOrdered orderBy(org.apache.flink.table.expressions.Expression orderBy)
Specifies the time attribute on which rows are ordered.For streaming tables, reference a rowtime or proctime time attribute here to specify the time mode.
For batch tables, refer to a timestamp or long attribute.
- Parameters:
orderBy
- field reference- Returns:
- an over window with defined order
-
-