diff --git a/docs/design_docs/milvus_proto.md b/docs/design_docs/milvus_proto.md index be836eb57d..c164e02cec 100644 --- a/docs/design_docs/milvus_proto.md +++ b/docs/design_docs/milvus_proto.md @@ -1433,12 +1433,13 @@ message CompactionMergeInfo { ``` ## ShowType +Used by [ShowCollections()]](#showcollections) and [ShowPartitions()](#showpartitions). ``` enum ShowType { - // Will return all colloections + // Will return all colloections/partitions All = 0; - // Will return loaded collections with their inMemory_percentages + // Will return loaded collections/partitions with their inMemory_percentages InMemory = 1; } ```