// SPDX-License-Identifier: BUSL-1.1
//! Row-Level Security (RLS) policies.
//!
//! RLS adds per-row access control: predicates injected into physical
//! plans as mandatory filters. Not bypassable by application code.
//!
//! Layout:
//! - [`types`] — `RlsPolicy`, `PolicyType` data shapes.
//! - [`store`] — `RlsPolicyStore` in-memory CRUD + query methods.
//! - [`eval`] — read/write predicate evaluation on `RlsPolicyStore`
//! (including `$auth.*` substitution).
//! - [`replication`] — helpers used by the `CatalogEntry` applier
//! to sync replicated policies into the in-memory store.
//! - [`namespace`] — namespace-scoped `check_namespace_authz` helper.
pub use check_namespace_authz;
pub use RlsPolicyStore;
pub use ;