#4484 Milvus only search default partition if search parameter partition_tags contains _default (#4486)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
pull/4493/head
groot 2020-12-21 16:30:10 +08:00 committed by GitHub
parent a07526c98e
commit 607ec31fbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ Please mark all change in change log and use the issue from GitHub
# Milvus 0.10.5 (TBD)
## Bug
- \#4378 Multi-threads to call load_collection() and search() cause Milvus hang
- \#4484 Milvus only search default partition if search parameter 'partition_tags' contains '_default'
## Feature

View File

@ -2385,7 +2385,7 @@ DBImpl::GetPartitionsByTags(const std::string& collection_id, const std::vector<
if (valid_tag == milvus::engine::DEFAULT_PARTITON_TAG) {
partition_name_array.insert(collection_id);
return status;
continue;
}
for (auto& schema : partition_array) {