radixdb-executor 1.1.0

SQL binding, planning, and execution engine for RadixDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Relational SELECT pipeline ownership.
//!
//! Physical result operators live in [`crate::result`]. This module owns the
//! SQL ordering between those operators, their row-shape contract, paging and
//! set algebra. Higher layers provide only recursive SELECT/subquery callbacks.

pub mod distinct;
pub mod filter;
pub mod ordering;
pub mod paging;
pub mod projection;
pub mod set;
pub mod shape;