// SPDX-License-Identifier: BUSL-1.1
//! Event-Plane sweeper that hard-deletes soft-deleted collections once
//! their retention window has elapsed.
//!
//! Runs on the Tokio runtime. Scans `_system.collections` on each eval
//! tick, filters rows with `is_active = false` whose
//! `modification_hlc + retention_window < now()`, and proposes
//! `CatalogEntry::PurgeCollection` for each. Never touches Data Plane
//! directly — proposes through the normal metadata-raft path, which
//! fans out through the existing apply + post_apply pipeline
//! (including the per-node Data Plane reclaim dispatch).
pub use ;
pub use ;
pub use ;