From 63f65dcd71addeef968b36574ae33efb97473fcf Mon Sep 17 00:00:00 2001 From: Luca Cominardi Date: Fri, 26 Jun 2026 17:47:33 +0200 Subject: [PATCH] fix: add missing manual_doc_id_mapping field in zstd test IndexSettings initializer Struct literal was missing the new field introduced in the manual doc id mapping refactor, causing a compile error under --all-features. Co-authored-by: Cursor --- src/index/index_meta.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index/index_meta.rs b/src/index/index_meta.rs index e49d77ec3..b272bc67c 100644 --- a/src/index/index_meta.rs +++ b/src/index/index_meta.rs @@ -465,6 +465,7 @@ mod tests { field: "text".to_string(), order: Order::Asc, }), + manual_doc_id_mapping: false, docstore_compression: crate::store::Compressor::Zstd(ZstdCompressor { compression_level: Some(4), }),