nodedb-sql 0.2.1

SQL parser, planner, and optimizer for NodeDB
Documentation
1
2
3
4
5
6
7
8
9
10
// SPDX-License-Identifier: Apache-2.0

//! Window function planning: `WINDOW`-clause resolution, frame conversion,
//! and extraction of `<func>() OVER (...)` specs from a SELECT projection.

mod extract;
mod frame;
mod named;

pub use extract::extract_window_functions;