solidb 1.0.2

A lightweight, high-performance structured database server written in Rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Query execution modules for SDBQL executor.
//!
//! This module organizes execution code into submodules:
//! - entry: Main execution entry points (execute, execute_with_stats)
//! - streaming: Bulk insert and mutation logging
//! - clauses: Body clause processing (FOR, FILTER, JOIN, etc.)
//! - subquery: Correlated subquery execution

mod clauses;
mod entry;
mod graph;
mod graph_rag;
mod paths;
mod streaming;
mod subquery;

// All functionality is provided via impl blocks on QueryExecutor
// in the submodules, so no re-exports needed.