Skip to content

Commit

Permalink
enhance altercollection and altercollectionfiled
Browse files Browse the repository at this point in the history
Signed-off-by: Xianhui.Lin <[email protected]>
  • Loading branch information
JsDove committed Nov 6, 2024
1 parent 04b35f2 commit 6c04ecf
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions proto/milvus.proto
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,22 @@ message AlterCollectionRequest {
string collection_name = 3;
int64 collectionID = 4;
repeated common.KeyValuePair properties = 5;
repeater string delete_keys = 6;
}

message AlterCollectionFieldRequest {
option (common.privilege_ext_obj) = {
object_type: Global
object_privilege: PrivilegeCreateCollection
object_name_index: -1
};
// Not useful for now
common.MsgBase base = 1;
string db_name = 2;
// The unique collection name in milvus.(Required)
string collection_name = 3;
string field_name =4;
repeated common.KeyValuePair properties = 5;
}

/**
Expand Down

0 comments on commit 6c04ecf

Please sign in to comment.