From fe1e1ce5234c74b50993e9d3f5e4a15e9a9c9c7e Mon Sep 17 00:00:00 2001 From: sunby Date: Wed, 22 Sep 2021 10:05:58 +0800 Subject: [PATCH] Add comment for DropCollection (#8024) Signed-off-by: sunby --- internal/distributed/rootcoord/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/distributed/rootcoord/service.go b/internal/distributed/rootcoord/service.go index 0c5165df37..615e09b007 100644 --- a/internal/distributed/rootcoord/service.go +++ b/internal/distributed/rootcoord/service.go @@ -291,6 +291,7 @@ func (s *Server) CreateCollection(ctx context.Context, in *milvuspb.CreateCollec return s.rootCoord.CreateCollection(ctx, in) } +// DropCollection drops a collection func (s *Server) DropCollection(ctx context.Context, in *milvuspb.DropCollectionRequest) (*commonpb.Status, error) { return s.rootCoord.DropCollection(ctx, in) }