ListPartitions()
This method lists all existing partitions in a specific collection.
func (c *Client) ListPartitions(ctx context.Context, opt ListPartitionsOption, callOptions ...grpc.CallOption) (partitionNames []string, err error)
Request Parameters
Parameter | Description | Type |
---|---|---|
| Context for the current call to work. |
|
| Optional parameters of the methods. |
|
| Optional parameters for calling the methods. |
|
ListPartitionsOption
This is an interface type. The listPartitionsOpt
struct type implements this interface type.
You can use the NewListPartitionOption()
function to get the concrete implementation.
NewListPartitionOption
The signature of this method is as follows:
func NewListPartitionOption(collectionName string) *listPartitionsOpt
Return
[]string
Example
import (
"context"
"github.com/milvus-io/milvus/client/v2/milvusclient"
)
partitionNames, err := cli.ListPartitions(ctx, milvusclient.NewListPartitionOption("quick_setup"))
if err != nil {
// handle error
}
fmt.Println(partitionNames)