mirror of https://github.com/milvus-io/milvus.git
Fix creating collection not idempotent (#24721)
Signed-off-by: longjiquan <jiquan.long@zilliz.com>pull/24729/head
parent
114c3540e7
commit
8156317c9c
|
@ -62,7 +62,7 @@ func (f Field) Equal(other Field) bool {
|
|||
f.IsPrimaryKey == other.IsPrimaryKey &&
|
||||
f.Description == other.Description &&
|
||||
f.DataType == other.DataType &&
|
||||
checkParamsEqual(f.TypeParams, f.TypeParams) &&
|
||||
checkParamsEqual(f.TypeParams, other.TypeParams) &&
|
||||
checkParamsEqual(f.IndexParams, other.IndexParams) &&
|
||||
f.AutoID == other.AutoID &&
|
||||
f.IsPartitionKey == other.IsPartitionKey &&
|
||||
|
|
Loading…
Reference in New Issue