icydb-core 0.98.1

IcyDB — A schema-first typed query engine and persistence runtime for Internet Computer canisters
Documentation
1
2
3
4
5
6
7
8
//! Module: db::sql
//! Responsibility: SQL frontend parsing contracts for reduced SQL entrypoints.
//! Does not own: schema validation, access planning, or executor behavior.
//! Boundary: parses SQL text into deterministic statement AST used by planner-facing layers.

pub(crate) mod identifier;
pub(crate) mod lowering;
pub(crate) mod parser;