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