radixdb_executor/pipeline/mod.rs
1//! Relational SELECT pipeline ownership.
2//!
3//! Physical result operators live in [`crate::result`]. This module owns the
4//! SQL ordering between those operators, their row-shape contract, paging and
5//! set algebra. Higher layers provide only recursive SELECT/subquery callbacks.
6
7pub mod distinct;
8pub mod filter;
9pub mod ordering;
10pub mod paging;
11pub mod projection;
12pub mod set;
13pub mod shape;