icydb-core 0.94.0

IcyDB — A schema-first typed query engine and persistence runtime for Internet Computer canisters
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Module: query::plan::expr
//! Responsibility: planner-owned expression and projection semantic contracts.
//! Does not own: expression execution, fingerprinting, or continuation wiring.
//! Boundary: additive semantic spine introduced without changing executor behavior.

mod ast;
mod projection;
mod scalar;
mod type_inference;

pub(crate) use ast::*;
pub(crate) use projection::*;
pub(in crate::db) use scalar::*;
pub(crate) use type_inference::*;