enable range query on fast field for u64 compatible types (#1762)

* enable range query on fast field for u64 compatible types

* rename, update benches
This commit is contained in:
PSeitz
2023-01-10 04:08:26 +01:00
committed by GitHub
parent 514d23a20c
commit 7c6cc818ae
7 changed files with 799 additions and 36 deletions

View File

@@ -113,7 +113,7 @@ mod bench {
}
/// Create a dictionary of random strings.
fn rand_dict(num_terms: usize) -> crate::Result<TermDictionary> {
fn rand_dict(num_terms: usize) -> std::io::Result<TermDictionary> {
let buffer: Vec<u8> = {
let mut terms = vec![];
for _i in 0..num_terms {