Skip to main content

radixdb_executor/access/
mod.rs

1//! Physical SELECT access-path ownership.
2//!
3//! This boundary owns query-local storage handles, predicate preparation,
4//! index eligibility and construction of storage scan inputs. Relational row
5//! processing remains in the next migration stages.
6
7pub mod handle;
8pub mod index;
9pub mod predicate;
10pub mod projection;
11pub mod scan;