mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
Fix PR comments
This commit is contained in:
parent
ab2cf69e8d
commit
e857ca4d7d
2 changed files with 19 additions and 15 deletions
|
@ -157,6 +157,8 @@ enum Command {
|
|||
prefixes: Vec<String>,
|
||||
},
|
||||
|
||||
/// Outputs a CSV with the documents ids along with
|
||||
/// the field id and the word count where it appears.
|
||||
FieldIdWordCountDocids {
|
||||
/// Display the whole documents ids in details.
|
||||
#[structopt(long)]
|
||||
|
@ -714,8 +716,8 @@ fn field_id_word_count_docids(
|
|||
.id(&field_name)
|
||||
.with_context(|| format!("unknown field name: {}", &field_name))?;
|
||||
|
||||
let left = (field_id, 1);
|
||||
let right = (field_id, 11);
|
||||
let left = (field_id, 0);
|
||||
let right = (field_id, u8::max_value());
|
||||
let iter = index.field_id_word_count_docids
|
||||
.range(rtxn, &(left..=right))?;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue