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
//! Query optimizer — re-export shim.
//!
//! The pluggable optimization-pass pipeline (`QueryOptimizer`,
//! `OptimizationPass`, and the predicate-pushdown / join-reordering /
//! projection-pushdown passes) is storage-agnostic — it rewrites the canonical
//! AST without consuming storage statistics, index metadata, or executor
//! capabilities — so it moved into `reddb-io-rql` (#1106, ADR 0053). This shim
//! preserves the historical `crate::storage::query::planner::optimizer::*`
//! import path so existing call-sites keep resolving unchanged.

pub use reddb_rql::planner::optimizer::*;