// SPDX-License-Identifier: BUSL-1.1
//! `CREATE COLLECTION` / `CREATE TABLE` DDL — split by concern.
//!
//! Relocated from `pgwire::ddl::collection::create` (now deleted):
//! - [`build`] — the shared `build_and_persist` body + `Variant`
//! - [`engine_option`] — `WITH (engine='...')` parsing/validation
//! - [`handler`] — the `create_collection` entry point
//! - [`table`] — the `create_table` entry point
//! - [`request`] — `CreateCollectionRequest`
pub use create_collection;
pub use CreateCollectionRequest;
pub use create_table;