Add comment for GetPartitionStatistics (#8434)

Signed-off-by: sunby <bingyi.sun@zilliz.com>
pull/8436/head
sunby 2021-09-23 21:39:55 +08:00 committed by GitHub
parent bd48f6f2db
commit 3cfa34e225
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -218,6 +218,7 @@ func (s *Server) GetCollectionStatistics(ctx context.Context, req *datapb.GetCol
return s.dataCoord.GetCollectionStatistics(ctx, req)
}
// GetPartitionStatistics gets statistics of a partition
func (s *Server) GetPartitionStatistics(ctx context.Context, req *datapb.GetPartitionStatisticsRequest) (*datapb.GetPartitionStatisticsResponse, error) {
return s.dataCoord.GetPartitionStatistics(ctx, req)
}