jetro-core 0.5.10

jetro-core: parser, compiler, and VM for the Jetro JSON query language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Planning algorithms: AST → logical IR → physical plan.
//!
//! `logical` lowers an `Expr` to the logical IR; `physical` chooses an
//! executable shape for it; `optimize` rewrites the resulting plans;
//! `analysis` provides shared shape, nullability, and selectivity passes.

pub(crate) mod analysis;
pub(crate) mod chain_demand;
pub(crate) mod chain_ir;
pub(crate) mod demand;
pub(crate) mod logical;
pub(crate) mod optimize;
pub(crate) mod patch_fusion;
pub(crate) mod physical;
pub(crate) mod update;