DropCollectionProperties()
This method resets the specified properties of a collection to their default values.
func (c *Client) DropCollectionProperties(ctx context.Context, option DropCollectionPropertiesOption, 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. |
|
DropCollectionPropertiesOption
This is an interface type. The dropCollectionPropertiesOption
struct type implements this interface type.
You can use the NewDropCollectionPropertiesOption()
function to get the concrete implementation.
NewDropCollectionPropertiesOption
The signature of this method is as follows:
func NewDropCollectionPropertiesOption(collection string, propertyKeys ...string) *dropCollectionPropertiesOption
Parameter | Description | Type |
---|---|---|
| Name of the collection to drop. |
|
| Names of the properties to reset. |
|
Return
Null
Example
err = cli.DropCollectionProperties(ctx, milvusclient.NewDropCollectionPropertiesOption("my_collection", common.CollectionTTLConfigKey))
if err != nil {
// handle error
}