[skip e2e] Add comment for GetPartitionInfo (#15021)

Signed-off-by: dragondriver <jiquan.long@zilliz.com>
pull/15029/head
Jiquan Long 2022-01-07 17:49:43 +08:00 committed by GitHub
parent 8d24428c4e
commit 72e3352366
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -45,6 +45,7 @@ type Cache interface {
GetPartitionID(ctx context.Context, collectionName string, partitionName string) (typeutil.UniqueID, error)
// GetPartitions get all partitions' id of specific collection.
GetPartitions(ctx context.Context, collectionName string) (map[string]typeutil.UniqueID, error)
// GetPartitionInfo get partition's info.
GetPartitionInfo(ctx context.Context, collectionName string, partitionName string) (*partitionInfo, error)
GetCollectionSchema(ctx context.Context, collectionName string) (*schemapb.CollectionSchema, error)
RemoveCollection(ctx context.Context, collectionName string)