jetro-core 0.5.12

jetro-core: parser, compiler, and VM for the Jetro JSON query language
Documentation
//! Opt-in query introspection.
//!
//! This module is deliberately read-only. Normal query execution does not
//! allocate or populate these structures; callers receive them only through
//! explicit inspection APIs.

mod inspect;
pub(crate) mod ndjson;
pub(crate) mod physical;
pub(crate) mod pipeline;
mod render;
mod report;

pub(crate) use inspect::inspect_query;
pub use report::{
    BackendInspection, BackendKind, BackendStatus, DirectPlanInspection, ExecutionFactsInspection,
    InspectContext, InspectLevel, InspectOptions, InspectionSummary, LogicalInspection,
    NdjsonInspection, PhysicalInspection, PhysicalNodeInspection, PipelineInspection,
    PipelineStageInspection, QueryInspection, RowStreamInspection,
};