Skip to main content

nodedb_sql/planner/window/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2
3//! Window function planning: `WINDOW`-clause resolution, frame conversion,
4//! and extraction of `<func>() OVER (...)` specs from a SELECT projection.
5
6mod extract;
7mod frame;
8mod named;
9
10pub use extract::extract_window_functions;