icydb-core 0.213.35

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
15
16
//! Module: query::builder::aggregate
//! Responsibility: composable grouped/global aggregate expression builders plus
//! fluent terminal descriptors that project aggregate-like query results.
//! Does not own: aggregate validation policy, executor fold semantics, or
//! session execution wiring.
//! Boundary: fluent aggregate intent construction and terminal descriptors
//! lowered into query/session-owned execution contracts.

mod expr;

///
/// TESTS
///
pub use expr::{
    AggregateExpr, avg, count, count_by, exists, first, last, max, max_by, min, min_by, sum,
};