nodedb 0.3.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
// SPDX-License-Identifier: BUSL-1.1

//! `CREATE PROCEDURE` DDL — split by concern.
//!
//! - [`handler`] — the `create_procedure` pgwire entry point
//! - [`parse`] — SQL surface-grammar parser for `CREATE PROCEDURE`
//! - [`routability`] — DML-target analysis that classifies a
//!   procedure body as `SingleCollection` / `MultiCollection` for
//!   vShard affinity routing

pub mod handler;
pub mod parse;
pub mod routability;

pub use handler::create_procedure;