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
12
13
14
15
//! Query optimizer (filter ranking, decorrelation, stats collection) —
//! re-export shim.
//!
//! Filter ranking (`FilterRanker`, `RankedFilter`, `RankingConfig`), subquery
//! decorrelation (`Decorrelator`, `SubqueryAnalysis`, …), and the in-memory
//! stats-collection model (`StatsCollector`, `ColumnStats`, `TableStats`) are
//! storage-agnostic — self-contained ranking/cost models that consume no
//! storage statistics, index metadata, or executor capabilities — so they
//! moved into the `reddb-io-rql` language front-end crate (#1106, ADR 0053).
//! This shim preserves the historical `crate::storage::query::optimizer::*`
//! import path (and the `crate::storage::query::optimizer::{stats, …}`
//! submodule paths) so existing call-sites keep resolving unchanged.

pub use reddb_rql::optimizer::*;
pub use reddb_rql::optimizer::{decorrelate, filter_rank, stats};