reifydb_engine/vm/instruction/mod.rs
1// SPDX-License-Identifier: AGPL-3.0-or-later
2// Copyright (c) 2026 ReifyDB
3
4//! Instruction handlers the VM dispatches to. Split into DDL (catalog mutations: create/alter/drop, plus
5//! migrations) and DML (data manipulation: insert/update/delete, plus the read-side scans, joins, projections).
6//! Each handler owns the validation and policy interactions specific to its operation.
7
8pub(crate) mod ddl;
9pub(crate) mod dml;