RenameCollection()
This method renames the specified collection.
func (c *Client) RenameCollection(ctx context.Context, option RenameCollectionOption, 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. |
|
RenameCollectionOption
This is an interface type. The renameCollectionOption
struct type implements this interface type.
You can use the NewRenameCollectionOption()
function to get the concrete implementation.
NewRenameCollectionOption
The signature of this method is as follows:
func NewRenameCollectionOption(oldName, newName string) *renameCollectionOption
Parameter | Description | Type |
---|---|---|
| Original name of the collection to rename. |
|
| New name of the collection after this operation. |
|
Return
Null
Example
import (
"context"
"github.com/milvus-io/milvus/client/v2/milvusclient"
)
err = cli.RenameCollection(ctx, milvusclient.NewRenameCollectionOption("my_collection", "my_new_collection"))
if err != nil {
// handle error
}