icydb-core 0.98.1

IcyDB — A schema-first typed query engine and persistence runtime for Internet Computer canisters
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::db::{
    predicate::{is_normalized_bool_expr, normalize_bool_expr},
    query::plan::expr::Expr,
};

pub(super) fn normalize_where_bool_expr(expr: Expr) -> Expr {
    normalize_bool_expr(expr)
}

pub(super) fn is_normalized_where_bool_expr(expr: &Expr) -> bool {
    is_normalized_bool_expr(expr)
}