From aca305bb77e910f0dec3f24c8a0065c12ae5e1e3 Mon Sep 17 00:00:00 2001 From: Kerollmops Date: Wed, 14 Jun 2023 14:17:55 +0200 Subject: [PATCH] Log more to make sure we insert vectors in the hgg data-structure --- milli/src/update/index_documents/typed_chunk.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/milli/src/update/index_documents/typed_chunk.rs b/milli/src/update/index_documents/typed_chunk.rs index 82c02375c..122484a6d 100644 --- a/milli/src/update/index_documents/typed_chunk.rs +++ b/milli/src/update/index_documents/typed_chunk.rs @@ -234,6 +234,7 @@ pub(crate) fn write_typed_chunk_into_index( // TODO enable again when the library is fixed hgg.insert(pod_collect_to_vec(value), docid); } + log::debug!("There are {} entries in the HGG so far", hgg.len()); index.put_vector_hgg(wtxn, &hgg)?; } TypedChunk::ScriptLanguageDocids(hash_pair) => {