Skip to main content

reddb_server/storage/schema/
function_catalog.rs

1//! Re-export shim for the function catalog.
2//!
3//! The function catalog — static table of built-in scalar / aggregate
4//! signatures — is mutually recursive with the coercion spine
5//! (`function_catalog::resolve` delegates to `coercion_spine::resolve_function`),
6//! so it travelled with the spine into the neutral keystone crate
7//! [`reddb_types`] (ADR 0052). This shim keeps the historical
8//! `storage::schema::function_catalog` path resolving so existing call-sites
9//! stay untouched.
10
11pub use reddb_types::function_catalog::*;