// SPDX-License-Identifier: Apache-2.0
//! Window function specification and evaluation.
//!
//! Evaluated after sort, before projection. Each spec produces a new column
//! appended to every row (e.g., ROW_NUMBER, RANK, SUM OVER).
pub use evaluate_window_functions;
pub use ;