nodedb_query/window/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2
3//! Window function specification and evaluation.
4//!
5//! Evaluated after sort, before projection. Each spec produces a new column
6//! appended to every row (e.g., ROW_NUMBER, RANK, SUM OVER).
7
8pub mod aggregate;
9pub mod eval;
10pub mod frame;
11pub mod helpers;
12pub mod offset;
13pub mod ranking;
14pub mod running;
15pub mod spec;
16
17pub use eval::evaluate_window_functions;
18pub use spec::{FrameBound, WindowFrame, WindowFuncSpec};