[skip ci] Add note for design doc (#13234)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
This commit is contained in:
groot 2021-12-13 11:03:18 +08:00 committed by GitHub
parent 6a6ae67ff4
commit e03dbf0efc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}
```