Skip to content

Commit

Permalink
Fix typos (#601)
Browse files Browse the repository at this point in the history
Signed-off-by: unfode <[email protected]>
  • Loading branch information
unfode authored Oct 18, 2023
1 parent 29a4e1d commit 647cbab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ type Client interface {

// Insert column-based data into collection, returns id column values
Insert(ctx context.Context, collName string, partitionName string, columns ...entity.Column) (entity.Column, error)
// Flush flush collection, specified
// Flush collection, specified
Flush(ctx context.Context, collName string, async bool) error
// FlushV2 flush collection, specified, return newly sealed segmentIds, all flushed segmentIds of the collection, seal time and error
// currently it is only used in milvus-backup(https://github.com/zilliztech/milvus-backup)
Expand All @@ -134,7 +134,7 @@ type Client interface {
Delete(ctx context.Context, collName string, partitionName string, expr string) error
// Upsert column-based data of collection, returns id column values
Upsert(ctx context.Context, collName string, partitionName string, columns ...entity.Column) (entity.Column, error)
// Search search with bool expression
// Search with bool expression
Search(ctx context.Context, collName string, partitions []string,
expr string, outputFields []string, vectors []entity.Vector, vectorField string, metricType entity.MetricType, topK int, sp entity.SearchParam, opts ...SearchQueryOptionFunc) ([]SearchResult, error)
// QueryByPks query record by specified primary key(s).
Expand Down

0 comments on commit 647cbab

Please sign in to comment.