Skip to main content

Module window

Module window 

Source
Expand description

Window function trait with sliding-window support.

Window functions extend aggregate semantics with the ability to efficiently process sliding window frames via the inverse method. This enables O(1) per-row computation for frames like ROWS BETWEEN 1 PRECEDING AND 1 FOLLOWING.

Structs§

WindowAdapter
Type-erased adapter for WindowFunction, analogous to AggregateAdapter.

Traits§

WindowFunction
A window SQL function (e.g. SUM() OVER (...), custom moving averages).