Exposing u64-based FastFieldRangeWeight (#2024)

This commit is contained in:
Paul Masurel
2023-05-03 18:32:00 +09:00
committed by GitHub
parent 73452284ae
commit f28ddb711e
7 changed files with 150 additions and 94 deletions

View File

@@ -974,8 +974,8 @@ mod test {
let query = make_query_parser().parse_query("title:[A TO B]").unwrap();
assert_eq!(
format!("{:?}", query),
"RangeQuery { field: \"title\", value_type: Str, left_bound: Included([97]), \
right_bound: Included([98]), limit: None }"
"RangeQuery { field: \"title\", value_type: Str, lower_bound: Included([97]), \
upper_bound: Included([98]), limit: None }"
);
}