icydb-core 0.145.5

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
17
18
mod binding;
mod explain;
mod global;

#[cfg(test)]
pub(crate) use binding::SqlGlobalAggregateCommand;
pub(crate) use binding::SqlGlobalAggregateCommandCore;
#[cfg(test)]
pub(crate) use binding::compile_sql_global_aggregate_command;
pub(in crate::db) use binding::compile_sql_global_aggregate_command_core_from_prepared;
#[cfg(test)]
pub(in crate::db::sql::lowering) use binding::{
    bind_lowered_sql_global_aggregate_command, compile_sql_global_aggregate_command_from_prepared,
};
pub(crate) use explain::bind_lowered_sql_explain_global_aggregate_structural;
pub(in crate::db::sql::lowering) use global::{
    LoweredSqlGlobalAggregateCommand, lower_global_aggregate_select_shape,
};