From b898b3dcd62e5c95ad5c07496dcccf48f006d7d6 Mon Sep 17 00:00:00 2001 From: Ryan Green Date: Fri, 25 Oct 2024 14:32:05 -0230 Subject: [PATCH] Fix index type --- rust/lancedb/src/index.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/lancedb/src/index.rs b/rust/lancedb/src/index.rs index 0828c292..b966e8cc 100644 --- a/rust/lancedb/src/index.rs +++ b/rust/lancedb/src/index.rs @@ -134,6 +134,7 @@ impl std::fmt::Display for IndexType { Self::Bitmap => write!(f, "BITMAP"), Self::LabelList => write!(f, "LABEL_LIST"), Self::FTS => write!(f, "FTS"), + Self::Inverted => write!(f, "FTS"), } } }