nodedb 0.0.0-beta.1

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
1
2
3
4
5
6
7
8
9
10
//! Serializable expression tree for Data Plane evaluation.
//!
//! `SqlExpr` is the bridge between DataFusion's `Expr` (Control Plane) and
//! the Data Plane's JSON document evaluation.

mod cast;
mod eval;
mod functions;

pub use eval::{BinaryOp, CastType, ComputedColumn, SqlExpr};