// SPDX-License-Identifier: BUSL-1.1
//! Synchronous post-apply side effects for database catalog entries.
//!
//! Database descriptors and grants are read directly from redb on the hot
//! path (no separate in-memory registry). Post-apply is therefore a no-op
//! today — the redb write in the apply step is sufficient for consistency.
//! This module exists to keep the per-family structure uniform with all
//! other catalog families.
use Arc;
use crateDatabaseDescriptor;
use crateSharedState;
/// Post-apply for `PutDatabase` — no in-memory cache to update.
/// Post-apply for `DeleteDatabase` — no in-memory cache to update.
/// Post-apply for `PutDatabaseGrant`.
/// Post-apply for `DeleteDatabaseGrant`.