Skip to content

Commit f9465f9

Browse files
authored
feat: add lte/gte aliases (#886)
1 parent e70a34c commit f9465f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parser/src/split.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ static ALIASES: LazyLock<HashMap<Primitive, &[&str]>> = LazyLock::new(|| {
2626
(Primitive::Ne, &["ne", "neq"]),
2727
(Primitive::Eq, &["eq"]),
2828
(Primitive::Lt, &["lt", "less"]),
29-
(Primitive::Le, &["le", "leq"]),
29+
(Primitive::Le, &["le", "leq", "lte"]),
3030
(Primitive::Gt, &["gt", "greater"]),
31-
(Primitive::Ge, &["ge", "geq"]),
31+
(Primitive::Ge, &["ge", "geq", "gte"]),
3232
(Primitive::Utf8, &["utf"]),
3333
(Primitive::First, &["fst"]),
3434
(Primitive::Last, &["lst"]),

0 commit comments

Comments
 (0)