// SPDX-License-Identifier: BUSL-1.1
//! `CREATE PROCEDURE` DDL — split by concern.
//!
//! - [`handler`] — the `create_procedure` pgwire entry point
//! - [`parse`] — SQL surface-grammar parser for `CREATE PROCEDURE`
//! - [`routability`] — DML-target analysis that classifies a
//! procedure body as `SingleCollection` / `MultiCollection` for
//! vShard affinity routing
pub use create_procedure;