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"]),