mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 03:13:22 +08:00
- Add e2e test cases for Go `milvusclient` - Fix client SparseEmbedding to vector issue: #33419 Signed-off-by: ThreadDao <yufen.zong@zilliz.com>
12 lines
309 B
Go
12 lines
309 B
Go
package helper
|
|
|
|
type CreateCollectionParams struct {
|
|
CollectionFieldsType CollectionFieldsType // collection fields type
|
|
}
|
|
|
|
func NewCreateCollectionParams(collectionFieldsType CollectionFieldsType) *CreateCollectionParams {
|
|
return &CreateCollectionParams{
|
|
CollectionFieldsType: collectionFieldsType,
|
|
}
|
|
}
|