From c0ede30c6e6f5e7a268d44364838ced661c8265c Mon Sep 17 00:00:00 2001 From: sunby Date: Fri, 17 Sep 2021 11:15:53 +0800 Subject: [PATCH] Add comment for ShowCollections (#8032) 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 cbec4cb33e..b9a7658345 100644 --- a/internal/distributed/rootcoord/service.go +++ b/internal/distributed/rootcoord/service.go @@ -291,6 +291,7 @@ func (s *Server) DescribeCollection(ctx context.Context, in *milvuspb.DescribeCo return s.rootCoord.DescribeCollection(ctx, in) } +// ShowCollections gets all collections func (s *Server) ShowCollections(ctx context.Context, in *milvuspb.ShowCollectionsRequest) (*milvuspb.ShowCollectionsResponse, error) { return s.rootCoord.ShowCollections(ctx, in) }