// SPDX-License-Identifier: BUSL-1.1
//! `CREATE COLLECTION` DDL — split by concern.
//!
//! - [`handler`] — the `create_collection` pgwire entry point
//! - [`register`] — Data Plane `DocumentOp::Register` dispatch
//! (leader-side + applier-side variants)
//! - [`enforcement`] — parse WITH BALANCED / materialized_sum /
//! generated-column helpers
//!
//! Public API stays at `super::create::*` via the re-exports
//! below — no callers outside this file need to change.
pub use create_collection;
pub use ;
pub use CreateCollectionRequest;
pub use create_table;