reifydb-engine 0.5.0

Query execution and processing engine for ReifyDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB

//! DDL instruction handlers. CREATE, ALTER, DROP, GRANT, REVOKE, and MIGRATE operate against the catalog tier
//! through admin transactions and emit catalog change events that the materialised view picks up. Each operation
//! validates against the existing catalog state before applying so a CREATE that conflicts with an existing
//! object fails before the transaction commits.

pub mod alter;
pub mod create;
pub mod drop;
pub mod grant;
pub mod migrate;
pub mod revoke;