mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-04 01:42:15 +08:00
IVFPQ has supported to delete vectors (#1722)
Signed-off-by: shengjun.li <shengjun.li@zilliz.com>
This commit is contained in:
parent
538c377e65
commit
e3786a24f4
@ -72,7 +72,8 @@ DeleteByIDRequest::OnExecute() {
|
||||
table_schema.engine_type_ != (int32_t)engine::EngineType::FAISS_BIN_IDMAP &&
|
||||
table_schema.engine_type_ != (int32_t)engine::EngineType::FAISS_IVFFLAT &&
|
||||
table_schema.engine_type_ != (int32_t)engine::EngineType::FAISS_BIN_IVFFLAT &&
|
||||
table_schema.engine_type_ != (int32_t)engine::EngineType::FAISS_IVFSQ8) {
|
||||
table_schema.engine_type_ != (int32_t)engine::EngineType::FAISS_IVFSQ8 &&
|
||||
table_schema.engine_type_ != (int32_t)engine::EngineType::FAISS_PQ) {
|
||||
std::string err_msg =
|
||||
"Index type " + std::to_string(table_schema.engine_type_) + " does not support delete operation";
|
||||
SERVER_LOG_ERROR << err_msg;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user