nodedb_query/scan_filter/mod.rs
1//! Post-scan filter evaluation.
2//!
3//! `ScanFilter` represents a single filter predicate.
4//!
5//! Shared between Origin (Control Plane + Data Plane) and Lite.
6
7pub mod like;
8pub mod op;
9pub mod parse;
10pub mod types;
11
12pub use like::sql_like_match;
13pub use op::FilterOp;
14pub use parse::parse_simple_predicates;
15pub use types::ScanFilter;