reifydb-engine 0.5.6

Query execution and processing engine for ReifyDB
Documentation
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 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;