From c9cc748f42fd3918b1d0f96248fc6d65665cf49d Mon Sep 17 00:00:00 2001 From: Louis Dureuil Date: Mon, 1 Sep 2025 16:37:52 +0200 Subject: [PATCH] Mark get_vector_store as public --- crates/milli/src/index.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/milli/src/index.rs b/crates/milli/src/index.rs index f8210abfa..7485df855 100644 --- a/crates/milli/src/index.rs +++ b/crates/milli/src/index.rs @@ -469,7 +469,7 @@ impl Index { )?) } - pub(crate) fn get_vector_store(&self, rtxn: &RoTxn<'_>) -> Result { + pub fn get_vector_store(&self, rtxn: &RoTxn<'_>) -> Result { Ok(self .main .remap_types::>()