未验证 提交 f2224756 编写于 作者: W wt 提交者: GitHub

[skip ci] Add new func of update file (#11411)

Signed-off-by: Nwangting0128 <ting.wang@zilliz.com>
上级 54392802
......@@ -157,6 +157,15 @@ def dict_update(source, target):
return target
def update_dict_value(server_resource, values_dict):
if not isinstance(server_resource, dict) or not isinstance(values_dict, dict):
return values_dict
target = dict_update(server_resource, values_dict)
return target
def search_param_analysis(vector_query, filter_query):
""" Search parameter adjustment, applicable pymilvus version >= 2.0.0rc7.dev24 """
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册