nodedb 0.2.1

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
17
18
// SPDX-License-Identifier: BUSL-1.1

//! Array engine dispatch — wires `PhysicalPlan::Array(ArrayOp)` to the
//! Data-Plane `ArrayEngine` via the shared `ArrayCatalogHandle`.

pub mod aggregate;
mod aggregate_helpers;
pub mod convert;
pub mod elementwise;
pub mod encode;
pub mod entry;
pub mod mutate;
pub mod open;
pub mod read;
pub mod surrogate_scan;

#[cfg(test)]
mod tests_dispatch;