llkv-plan 0.8.5-alpha

Query planner for the LLKV toolkit.
Documentation
//! Planner data structures shared between SQL parsing and execution.
//!
//! The crate exposes:
//! - [`plan_graph`] for the serialized DAG representation exchanged with tooling.
//! - [`plans`] for high-level logical plan structures emitted by the SQL layer.
//! - [`validation`] helpers that enforce naming and schema invariants while plans
//!   are being assembled.
//! - [`conversion`] utilities for converting SQL AST nodes to Plan types.
//! - [`traversal`] generic iterative traversal utilities for deeply nested ASTs.
//!
//! Modules are re-exported so downstream crates can `use llkv_plan::*` when they
//! only need a subset of the functionality.
#![forbid(unsafe_code)]

pub mod canonical;
pub mod conversion;
pub mod plan_graph;
pub mod plans;
// pub mod program; // Moved to llkv-compute
pub mod subquery_correlation;
pub mod table_scan;
pub mod traversal;
pub mod validation;

pub use canonical::canonical_scalar_from_plan_value;
pub use conversion::{RangeSelectRows, extract_rows_from_range};
pub use llkv_compute::interval::parse_interval_literal;
pub use llkv_compute::{
    add_interval_to_date32, parse_date32_literal, subtract_interval_from_date32,
};
pub use llkv_types::{CanonicalRow, CanonicalScalar};
pub use plan_graph::*;
pub use plans::*;
// pub mod program; // Moved to llkv-compute
pub use llkv_compute::program::{
    DomainOp, DomainProgram, DomainProgramId, EvalOp, OwnedFilter, OwnedOperator, ProgramCompiler,
    ProgramSet, normalize_predicate,
};
pub use subquery_correlation::{
    SUBQUERY_CORRELATED_PLACEHOLDER_PREFIX, SubqueryCorrelatedColumnTracker,
    SubqueryCorrelatedTracker, subquery_correlated_placeholder,
};
pub use table_scan::{TableScanProjectionSpec, build_table_scan_plan};
pub use traversal::{TransformFrame, Traversable, traverse_postorder};