pub(crate) mod canonical;
pub(in crate::db) mod capabilities;
pub(in crate::db) mod dispatch;
pub(in crate::db) mod execution_contract;
pub(crate) mod lowering;
pub(crate) mod path;
pub(crate) mod plan;
#[cfg(test)]
mod tests;
pub(crate) mod validate;
use crate::value::Value;
pub(crate) use canonical::normalize_access_plan_value;
pub(in crate::db) use capabilities::single_path_capabilities;
pub(in crate::db) use dispatch::{
AccessPathDispatch, AccessPathKind, AccessPlanDispatch, dispatch_access_plan,
};
pub(in crate::db) use dispatch::{ExecutableAccessPathDispatch, dispatch_executable_access_path};
pub(in crate::db) use execution_contract::{
AccessPathExecutionKind, AccessRouteClass, AccessStrategy, ExecutableAccessNode,
ExecutableAccessPath, ExecutableAccessPlan, ExecutionBounds, ExecutionDistinctMode,
ExecutionOrdering, ExecutionPathPayload,
};
pub(in crate::db) use lowering::{
LoweredIndexPrefixSpec, LoweredIndexRangeSpec, LoweredKey, lower_index_prefix_specs,
lower_index_range_specs,
};
pub(crate) use path::{AccessPath, IndexRangePathRef, SemanticIndexRangeSpec};
pub(crate) use plan::{
AccessPlan, PushdownApplicability, PushdownSurfaceEligibility,
SecondaryOrderPushdownEligibility, SecondaryOrderPushdownRejection,
};
pub(crate) use validate::{AccessPlanError, validate_access_structure_model};
pub(in crate::db) type AccessKey = Value;