nodedb 0.3.0-beta.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

//! Columnar base scan handler.
//!
//! Reads rows from the `MutationEngine` memtable, applies projection,
//! WHERE filter predicates, and limit. Used by plain columnar and spatial
//! collections.

pub mod bitemporal;
pub mod convert;
pub mod filter;
pub mod materialize_scan;
pub mod materialize_scan_ts;
pub mod scan;
pub mod sort;

pub(in crate::data::executor) use convert::emit_column_value;
pub(in crate::data::executor) use scan::ColumnarScanParams;