mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 12:59:23 +08:00
18 lines
269 B
Go
18 lines
269 B
Go
|
package log
|
||
|
|
||
|
type MetaOperation int
|
||
|
|
||
|
const (
|
||
|
InvalidMetaOperation MetaOperation = iota - 1
|
||
|
CreateCollection
|
||
|
DropCollection
|
||
|
CreateCollectionAlias
|
||
|
AlterCollectionAlias
|
||
|
DropCollectionAlias
|
||
|
CreatePartition
|
||
|
DropPartition
|
||
|
CreateIndex
|
||
|
DropIndex
|
||
|
BuildSegmentIndex
|
||
|
)
|