mirror of https://github.com/milvus-io/milvus.git
Fix bug for type params when indexing (#23242)
Signed-off-by: cai.zhang <cai.zhang@zilliz.com>pull/23267/head
parent
81f061b531
commit
d9b4303056
|
@ -326,7 +326,7 @@ func (cit *createIndexTask) Execute(ctx context.Context) error {
|
|||
CollectionID: cit.collectionID,
|
||||
FieldID: cit.fieldSchema.GetFieldID(),
|
||||
IndexName: cit.req.GetIndexName(),
|
||||
TypeParams: cit.fieldSchema.GetTypeParams(),
|
||||
TypeParams: cit.newTypeParams,
|
||||
IndexParams: cit.newIndexParams,
|
||||
IsAutoIndex: cit.isAutoIndex,
|
||||
UserIndexParams: cit.req.GetExtraParams(),
|
||||
|
|
Loading…
Reference in New Issue