From ff60bb8bfc82b4b5c0cf9113afc4adfbae5d32cc Mon Sep 17 00:00:00 2001 From: Jiquan Long Date: Mon, 10 Jan 2022 22:37:58 +0800 Subject: [PATCH] [skip e2e] Add comment for GetCollectionSchema (#15113) Signed-off-by: dragondriver --- internal/proxy/meta_cache.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/proxy/meta_cache.go b/internal/proxy/meta_cache.go index e433735668..55393222d0 100644 --- a/internal/proxy/meta_cache.go +++ b/internal/proxy/meta_cache.go @@ -47,6 +47,7 @@ type Cache interface { 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 get collection's schema. GetCollectionSchema(ctx context.Context, collectionName string) (*schemapb.CollectionSchema, error) RemoveCollection(ctx context.Context, collectionName string) RemovePartition(ctx context.Context, collectionName string, partitionName string)