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

//! `SqlPlan::Array*` → `PhysicalTask` lowering for the read/maint
//! function surface (ARRAY_SLICE, ARRAY_AGG, ARRAY_PROJECT,
//! ARRAY_ELEMENTWISE, ARRAY_FLUSH, ARRAY_COMPACT).

pub mod aggregate;
pub mod elementwise;
pub mod helpers;
pub mod maint;
pub mod project;
pub mod slice;

pub(super) use aggregate::convert_agg;
pub(super) use elementwise::convert_elementwise;
pub(super) use maint::{convert_compact, convert_flush};
pub(super) use project::convert_project;
pub(super) use slice::convert_slice;