add parse_geo_distance to parse_primary

This commit is contained in:
Filip Bachul 2023-03-31 23:37:58 +02:00
parent fddfb37f1f
commit 2fff6f7f23

View File

@ -447,6 +447,7 @@ fn parse_primary(input: Span, depth: usize) -> IResult<FilterCondition> {
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)