alopex-sql 0.6.0

SQL parser components for the Alopex DB dialect
1
2
3
4
5
6
7
8
9
10
11
12
//! DML executor for INSERT/UPDATE/DELETE operations.
//!
//! This module provides helpers to execute DML plans against the storage layer
//! while enforcing constraints and maintaining secondary indexes.

mod delete;
mod insert;
mod update;

pub use delete::execute_delete;
pub use insert::execute_insert;
pub use update::execute_update;