nodedb 0.4.0

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: BUSL-1.1

//! Protocol-neutral mirror database DDL handlers.
//!
//! The mirror *runtime* helpers (`apply_mirror_ddl_entry`,
//! `check_mirror_read_consistency`) remain on the pgwire side
//! (`pgwire::ddl::database::mirror`) because they back the pgwire read path and
//! the observer applier, not the DDL router. Only the three router handlers
//! (`MIRROR DATABASE`, `ALTER DATABASE … PROMOTE`, `SHOW DATABASE MIRROR
//! STATUS`) are migrated here.

pub mod create;
pub mod promote;
pub mod show;