Skip to main content

DropDatabaseProperties()

This method resets the specified property of a database to its default value.

func (c *Client) DropDatabaseProperties(ctx context.Context, option DropDatabasePropertiesOption, 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.

DropDatabasePropertiesOption

callOpts

Optional parameters for calling the methods.

grpc.CallOption

DropDatabasePropertiesOption

This is an interface type. The dropDatabasePropertiesOption struct type implements this interface type.

You can use the NewDropDatabasePropertiesOption() function to get the concrete implementation.

NewDropDatabasePropertiesOption

The signature of this method is as follows:

func NewDropDatabasePropertiesOption(dbName string, propertyKeys ...string) *dropDatabasePropertiesOption

Parameter

Description

Type

dbName

Name of the target database.

string

propertyKeys

List of the database properties to reset.

...string

Return

Null

Example

dbName := `test_db`
err = cli.DropDatabaseProperties(ctx, milvusclient.NewDropDatabasePropertiesOption(dbName, "database.replica.number"))
if err != nil {
// handle err
}