mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 11:57:07 +02:00
handle _geoDistance(x,x) sort error
This commit is contained in:
parent
53aa0a1b54
commit
cb2b5eb38e
1 changed files with 3 additions and 0 deletions
|
@ -82,6 +82,7 @@ impl FromStr for Member {
|
|||
|| text.starts_with("_geoRadius(")
|
||||
|| text.starts_with("_geoBoundingBox(")
|
||||
|| text.starts_with("_geo(")
|
||||
|| text.starts_with("_geoDistance(")
|
||||
{
|
||||
return Err(AscDescError::ReservedKeyword { name: text.to_string() })?;
|
||||
}
|
||||
|
@ -268,6 +269,8 @@ mod tests {
|
|||
("_geoPoint(12, -2021):desc", GeoError(BadGeoError::Lng(-2021.))),
|
||||
("_geo(12, -2021):asc", ReservedKeyword { name: S("_geo(12, -2021)") }),
|
||||
("_geo(12, -2021):desc", ReservedKeyword { name: S("_geo(12, -2021)") }),
|
||||
("_geoDistance(12, -2021):asc", ReservedKeyword { name: S("_geoDistance(12, -2021)") }),
|
||||
("_geoDistance(12, -2021):desc", ReservedKeyword { name: S("_geoDistance(12, -2021)") }),
|
||||
];
|
||||
|
||||
for (req, expected_error) in invalid_req {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue