AlterAlias()
This method changes the alias associated with the specified collection.
func (c *Client) AlterAlias(ctx context.Context, option AlterAliasOption, 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. |
|
AlterAliasOption
This is an interface type. The alterAliasOption
struct type implements this interface type.
You can use the NewAlterAliasOption()
function to get the concrete implementation.
NewAlterAliasOption
The signature of this method is as follows:
func NewAlterAliasOption(alias, collectionName string) *alterAliasOption
Parameter | Description | Type |
---|---|---|
| Alias to be assigned to the collection. |
|
| Name of the target collection. |
|
Return
Null
Example
err = cli.AlterAlias(ctx, milvusclient.NewAlterAliasOption("alice", "customized_setup_1"))
if err != nil {
// handle error
}
aliases, err := cli.ListAliases(ctx, milvusclient.NewListAliasesOption("customized_setup_1"))
if err != nil {
// handle error
}
fmt.Println(aliases)
aliases, err = cli.ListAliases(ctx, milvusclient.NewListAliasesOption("customized_setup_2"))
if err != nil {
// handle error
}
fmt.Println(aliases)