reifydb-engine 0.6.0

Query execution and processing engine for ReifyDB
Documentation
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: AGPL-3.0-or-later
// Copyright (c) 2026 ReifyDB

//! Instruction handlers the VM dispatches to. Split into DDL (catalog mutations: create/alter/drop, plus
//! migrations) and DML (data manipulation: insert/update/delete, plus the read-side scans, joins, projections).
//! Each handler owns the validation and policy interactions specific to its operation.

pub(crate) mod ddl;
pub(crate) mod dml;