AlterCollectionFieldProperty()
This method changes the specified property of a collection field.
func (c *Client) AlterCollectionFieldProperty(ctx context.Context, option AlterCollectionFieldPropertiesOption, callOptions ...grpc.CallOption) error
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
AlterCollectionFieldPropertiesOption
This is an interface type. The alterCollectionFieldPropertiesOption
struct type implements this interface type.
You can use the NewAlterCollectionFieldPropertiesOption()
function to get the concrete implementation.
NewAlterCollectionFieldPropertiesOption
The signature of this method is as follows:
func NewAlterCollectionFieldPropertiesOption(collectionName string, fieldName string) *alterCollectionFieldPropertiesOption
Parameter | Description | Type |
---|---|---|
| Name of the target collection. |
|
| Name of the target field. |
|
Return
Null
Example
err = cli.AlterCollectionFieldProperty(ctx, milvusclient.NewAlterCollectionFieldPropertiesOption("customized_setup_2", "id").WithProperty(common.MmapEnabledKey, "true"))
if err != nil {
// handle err
}