Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove a outdated comment #569

Merged
merged 1 commit into from
Sep 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions client/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ func (c *GrpcClient) CreateIndex(ctx context.Context, collName string, fieldName
}

// DescribeIndex describe index
// Deprecate please use DescribeIndexV2 instead.
func (c *GrpcClient) DescribeIndex(ctx context.Context, collName string, fieldName string, opts ...IndexOption) ([]entity.Index, error) {
if c.Service == nil {
return []entity.Index{}, ErrClientNotReady
Expand Down Expand Up @@ -190,7 +189,6 @@ func (c *GrpcClient) DropIndex(ctx context.Context, collName string, fieldName s
}

// GetIndexState get index state
// Deprecate please use DescribeIndexV2 instead.
func (c *GrpcClient) GetIndexState(ctx context.Context, collName string, fieldName string, opts ...IndexOption) (entity.IndexState, error) {
if c.Service == nil {
return entity.IndexState(commonpb.IndexState_Failed), ErrClientNotReady
Expand Down Expand Up @@ -218,7 +216,6 @@ func (c *GrpcClient) GetIndexState(ctx context.Context, collName string, fieldNa
}

// GetIndexBuildProgress get index building progress
// Deprecate please use DescribeIndexV2 instead.
func (c *GrpcClient) GetIndexBuildProgress(ctx context.Context, collName string, fieldName string, opts ...IndexOption) (total, indexed int64, err error) {
if c.Service == nil {
return 0, 0, ErrClientNotReady
Expand Down
Loading