nodedb-query 0.0.3

Shared query evaluation engine for NodeDB — expressions, filters, functions, aggregations, window functions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Post-scan filter evaluation.
//!
//! `ScanFilter` represents a single filter predicate.
//!
//! Shared between Origin (Control Plane + Data Plane) and Lite.

pub mod like;
pub mod op;
pub mod parse;
pub mod types;

pub use like::sql_like_match;
pub use op::FilterOp;
pub use parse::parse_simple_predicates;
pub use types::ScanFilter;