nodedb 0.2.0

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: BUSL-1.1

pub mod bindings;
pub mod core;
pub mod eval;
pub mod exception;
pub mod fuel;
pub mod plan_cache;
pub mod sql_bytes;
pub mod transaction;

pub use bindings::RowBindings;
pub use core::{MAX_CASCADE_DEPTH, StatementExecutor};
pub use exception::exception_matches;
pub use fuel::ExecutionBudget;
pub use plan_cache::ProcedureBlockCache;