Skip to main content

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

ctx

Context for the current call to work.

context.Context

option

Optional parameters of the methods.

DropCollectionPropertiesOption

callOpts

Optional parameters for calling the methods.

grpc.CallOption

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

collection

Name of the collection to drop.

string

propertyKeys

Names of the properties to reset.

...string

Return

Null

Example

err = cli.DropCollectionProperties(ctx, milvusclient.NewDropCollectionPropertiesOption("my_collection", common.CollectionTTLConfigKey))
if err != nil {
// handle error
}