// SPDX-License-Identifier: BUSL-1.1
//! Protocol-neutral retention policy DDL — CREATE / DROP / ALTER / SHOW.
pub use alter_retention_policy;
pub use create_retention_policy;
pub use drop_retention_policy;
pub use show_retention_policy;
/// CRDT collection name for retention policy sync between Origin and Lite.
const RETENTION_POLICIES_CRDT_COLLECTION: &str = "_retention_policies";