nodedb 0.4.0

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
// SPDX-License-Identifier: BUSL-1.1

//! Query routing: consistency selection, and the execute_planned_sql entry
//! point for DML/query dispatch.
//!
//! Cross-node forwarding is handled by the gateway (`SharedState.gateway`).
//! The old `forward_sql` / `remote_leader_for_tasks` helpers have been
//! replaced by `gateway.execute(ctx, plan)` which ships the pre-planned
//! physical plan via `ExecuteRequest` instead of a raw SQL string.

mod calvin_dispatch;
mod catalog;
mod check_enforcement;
mod clone_dispatch;
mod clone_write_dispatch;
mod cluster_array;
pub(in crate::control::server::pgwire::handler) mod execute;
mod execute_dml_hooks;
mod gateway_dispatch;
mod planning;
pub(in crate::control::server::pgwire::handler) mod result_shaping;
mod set_ops;
mod streaming;