Remove outdated TODOs

This commit is contained in:
Loïc Lecrenier 2022-09-07 18:03:52 +02:00 committed by Loïc Lecrenier
parent 3d7ed3263f
commit b1ab09196c
4 changed files with 2 additions and 6 deletions

View file

@ -138,13 +138,11 @@ pub(crate) fn write_typed_chunk_into_index(
is_merged_database = true;
}
TypedChunk::FieldIdFacetNumberDocids(facet_id_number_docids_iter) => {
// TODO indexer options for the facet level database
let indexer = FacetsUpdate::new(index, FacetType::Number, facet_id_number_docids_iter);
indexer.execute(wtxn)?;
is_merged_database = true;
}
TypedChunk::FieldIdFacetStringDocids(facet_id_string_docids_iter) => {
// TODO indexer options for the facet level database
let indexer = FacetsUpdate::new(index, FacetType::String, facet_id_string_docids_iter);
indexer.execute(wtxn)?;
is_merged_database = true;