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 |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
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 |
---|---|---|
| Name of the target database. |
|
| List of the database properties to reset. |
|
Return
Null
Example
dbName := `test_db`
err = cli.DropDatabaseProperties(ctx, milvusclient.NewDropDatabasePropertiesOption(dbName, "database.replica.number"))
if err != nil {
// handle err
}