modelvault-core 0.16.0

Core engine for ModelVault — application-focused embedded storage with model schemas, validation, and migrations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Minimal typed query AST, planning, and execution (0.7.0).

mod agg;
mod ast;
mod join;
mod operators;
mod planner;

pub use agg::spillable_group_count_sum_i64;
pub use ast::{OrderBy, OrderDirection};
pub use ast::{Predicate, Query};
pub use join::spillable_hash_join_match_count_i64;
pub use planner::{
    execute_query, execute_query_iter, execute_query_iter_owned,
    execute_query_iter_with_spill_path, explain_query, QueryRowIter,
};