From 2fad67ca0e62f9220d2c3d77bb5b7240743a90e1 Mon Sep 17 00:00:00 2001 From: shiyajuan123 <402700696@qq.com> Date: Thu, 18 Dec 2025 15:32:27 +0800 Subject: [PATCH] chores: clean up the residual FTS hardcode for index --- python/src/dataset.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/src/dataset.rs b/python/src/dataset.rs index 68031cc3c70..4c8f84287fa 100644 --- a/python/src/dataset.rs +++ b/python/src/dataset.rs @@ -1800,7 +1800,7 @@ impl Dataset { "ZONEMAP" => IndexType::ZoneMap, "BLOOMFILTER" => IndexType::BloomFilter, "LABEL_LIST" => IndexType::LabelList, - "INVERTED" | "FTS" => IndexType::Inverted, + "INVERTED" => IndexType::Inverted, "IVF_FLAT" | "IVF_PQ" | "IVF_SQ" | "IVF_RQ" | "IVF_HNSW_FLAT" | "IVF_HNSW_PQ" | "IVF_HNSW_SQ" => IndexType::Vector, _ => { @@ -1853,7 +1853,7 @@ impl Dataset { params: Some(config.config.clone()), }) } - "INVERTED" | "FTS" => { + "INVERTED" => { let mut params = InvertedIndexParams::default(); if let Some(kwargs) = kwargs { if let Some(with_position) = kwargs.get_item("with_position")? {