Skip to main content

reifydb_engine/vm/instruction/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 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;