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
15
16
17
// SPDX-License-Identifier: BUSL-1.1

//! Protocol-neutral `ALTER COLLECTION` handlers, one file per sub-command,
//! plus the total dispatcher over `AlterCollectionOp`.

mod add_column;
mod alter_type;
mod dispatch;
mod drop_column;
mod enforcement;
mod materialized_sum;
mod ownership;
mod rename_column;
mod strict_schema;
mod support;

pub use dispatch::dispatch_alter_collection;