From 0dba5c3fea8f6b097df3d9147282f9c7bcc88718 Mon Sep 17 00:00:00 2001 From: "Andrei E." Date: Sun, 7 Dec 2025 12:33:25 +0000 Subject: [PATCH] feat: add lte/gte aliases --- parser/src/split.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parser/src/split.rs b/parser/src/split.rs index bc76c7842..5926b315c 100644 --- a/parser/src/split.rs +++ b/parser/src/split.rs @@ -26,9 +26,9 @@ static ALIASES: LazyLock> = LazyLock::new(|| { (Primitive::Ne, &["ne", "neq"]), (Primitive::Eq, &["eq"]), (Primitive::Lt, &["lt", "less"]), - (Primitive::Le, &["le", "leq"]), + (Primitive::Le, &["le", "leq", "lte"]), (Primitive::Gt, &["gt", "greater"]), - (Primitive::Ge, &["ge", "geq"]), + (Primitive::Ge, &["ge", "geq", "gte"]), (Primitive::Utf8, &["utf"]), (Primitive::First, &["fst"]), (Primitive::Last, &["lst"]),