From 2fff6f7f23a435c25ddb0588e0fe2ec320129b45 Mon Sep 17 00:00:00 2001 From: Filip Bachul Date: Fri, 31 Mar 2023 23:37:58 +0200 Subject: [PATCH] add parse_geo_distance to parse_primary --- filter-parser/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/filter-parser/src/lib.rs b/filter-parser/src/lib.rs index 3a6973aaf..4bf9751c4 100644 --- a/filter-parser/src/lib.rs +++ b/filter-parser/src/lib.rs @@ -447,6 +447,7 @@ fn parse_primary(input: Span, depth: usize) -> IResult { parse_to, // the next lines are only for error handling and are written at the end to have the less possible performance impact parse_geo, + parse_geo_distance, parse_geo_point, parse_error_reserved_keyword, ))(input)