mirror of https://github.com/milvus-io/milvus.git
[skip ci] Add alias api wrapper (#8330)
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>pull/8334/head
parent
bfc4f651ef
commit
2a79eea6a1
|
@ -191,3 +191,12 @@ class ApiCollectionWrapper:
|
|||
res, check = api_request([self.collection.drop_index], **kwargs)
|
||||
check_result = ResponseChecker(res, func_name, check_task, check_items, check, **kwargs).run()
|
||||
return res, check_result
|
||||
|
||||
def create_alias(self):
|
||||
pass
|
||||
|
||||
def drop_alias(self):
|
||||
pass
|
||||
|
||||
def alter_alias(self):
|
||||
pass
|
||||
|
|
Loading…
Reference in New Issue