From a2f2d6bade2285492a5b677b924edb7622c3590d Mon Sep 17 00:00:00 2001 From: Sanhaoji2 Date: Wed, 8 May 2024 14:44:10 +0800 Subject: [PATCH] fix some issue --- src/index_factory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index_factory.cpp b/src/index_factory.cpp index df2bbb4ce..7d63f0c7c 100644 --- a/src/index_factory.cpp +++ b/src/index_factory.cpp @@ -43,10 +43,10 @@ void IndexFactory::check_config() } if (_config->tag_type != "int32" && _config->tag_type != "uint32" && _config->tag_type != "int64" && - _config->tag_type != "uint64") + _config->tag_type != "uint64" && _config->tag_type != "tag_uint128") { throw ANNException("ERROR: invalid data type : + " + _config->tag_type + - " is not supported. please select from [int32, uint32, int64, uint64]", + " is not supported. please select from [int32, uint32, int64, uint64, tag_uint128]", -1); } }