icydb-core 0.94.3

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
//! Module: db::executor::scan
//! Responsibility: fast-path scan execution helpers and route dispatch for PK/secondary/range streams.
//! Does not own: route-planner eligibility derivation or post-access materialization policy.
//! Boundary: executes pre-validated scan routes and returns ordered key streams.

mod fast_stream;
mod fast_stream_route;
mod index_range_limit;
mod secondary_index;

pub(in crate::db::executor) use fast_stream_route::{
    FastStreamRouteKind, FastStreamRouteRequest, execute_fast_stream_route,
};