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
//! Physical SELECT access-path ownership.
//!
//! This boundary owns query-local storage handles, predicate preparation,
//! index eligibility and construction of storage scan inputs. Relational row
//! processing remains in the next migration stages.

pub mod handle;
pub mod index;
pub mod predicate;
pub mod projection;
pub mod scan;