reddb_server/storage/query/sql_lowering.rs
1//! Filter ⇄ Expr lowering — re-export shim.
2//!
3//! The lowering helpers (`filter_to_expr`, `expr_to_filter`,
4//! `projection_to_*`, the `effective_*` accessors, …) moved into the
5//! `reddb-io-rql` crate alongside the canonical SQL AST they operate on
6//! (#1113, ADR 0053): they depend only on the AST plus `reddb-io-types`, so
7//! they belong in the same dependency-closed cluster. This shim preserves the
8//! historical `crate::storage::query::sql_lowering::*` import path so every
9//! parser, planner, and runtime call-site keeps resolving unchanged.
10
11pub use reddb_rql::sql_lowering::*;