[sip e2e] Add new func get_query_segment_info of client file (#14151)

Signed-off-by: wangting0128 <ting.wang@zilliz.com>
This commit is contained in:
wt 2021-12-24 15:44:30 +08:00 committed by GitHub
parent c32e964978
commit 989c61dd72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -490,6 +490,12 @@ class MilvusClient(object):
collection_name = self._collection_name
return self._milvus.release_partitions(collection_name, tag_names, timeout=timeout)
@time_wrapper
def get_query_segment_info(self, collection_name=None, timeout=300, **kwargs):
if collection_name is None:
collection_name = self._collection_name
return self._milvus.get_query_segment_info(collection_name, timeout=timeout, **kwargs)
@time_wrapper
def scene_test(self, collection_name=None, vectors=None, ids=None):
"""