reddb-io-server 1.11.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
//! Filter ⇄ Expr lowering — re-export shim.
//!
//! The lowering helpers (`filter_to_expr`, `expr_to_filter`,
//! `projection_to_*`, the `effective_*` accessors, …) moved into the
//! `reddb-io-rql` crate alongside the canonical SQL AST they operate on
//! (#1113, ADR 0053): they depend only on the AST plus `reddb-io-types`, so
//! they belong in the same dependency-closed cluster. This shim preserves the
//! historical `crate::storage::query::sql_lowering::*` import path so every
//! parser, planner, and runtime call-site keeps resolving unchanged.

pub use reddb_rql::sql_lowering::*;