reddb-io-server 1.12.0

RedDB server-side engine: storage, runtime, replication, MCP, AI, and the gRPC/HTTP/RedWire/PG-wire dispatchers. Re-exported by the umbrella `reddb` crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Re-export shim for the function catalog.
//!
//! The function catalog — static table of built-in scalar / aggregate
//! signatures — is mutually recursive with the coercion spine
//! (`function_catalog::resolve` delegates to `coercion_spine::resolve_function`),
//! so it travelled with the spine into the neutral keystone crate
//! [`reddb_types`] (ADR 0052). This shim keeps the historical
//! `storage::schema::function_catalog` path resolving so existing call-sites
//! stay untouched.

pub use reddb_types::function_catalog::*;