Skip to main content

nodedb_query/scan_filter/
mod.rs

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