From dfe7851ea73191b476d0bef0d6976a74129012dd Mon Sep 17 00:00:00 2001 From: Ryan Green Date: Fri, 25 Oct 2024 14:51:08 -0230 Subject: [PATCH] fix: error during deserialization of "INVERTED" index type --- rust/lancedb/src/index.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/rust/lancedb/src/index.rs b/rust/lancedb/src/index.rs index 665dbf1b..ae3c089b 100644 --- a/rust/lancedb/src/index.rs +++ b/rust/lancedb/src/index.rs @@ -133,7 +133,6 @@ 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"), } } }