mirror of https://github.com/milvus-io/milvus.git
fix index check error
Former-commit-id: 9b876213adce723cb2da6d4aa40fb33be2a2c54apull/191/head
parent
3c33d73cb1
commit
cd9f317747
|
@ -59,7 +59,8 @@ ValidateTableIndexType(int32_t index_type) {
|
|||
auto engine_type = engine::EngineType(index_type);
|
||||
switch (engine_type) {
|
||||
case engine::EngineType::FAISS_IDMAP:
|
||||
case engine::EngineType::FAISS_IVFFLAT: {
|
||||
case engine::EngineType::FAISS_IVFFLAT:
|
||||
case engine::EngineType::FAISS_IVFSQ8:{
|
||||
SERVER_LOG_DEBUG << "Index type: " << index_type;
|
||||
return SERVER_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue