diff --git a/internal/metastore/model/field.go b/internal/metastore/model/field.go index a69031b3d7..f8172cf48d 100644 --- a/internal/metastore/model/field.go +++ b/internal/metastore/model/field.go @@ -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 &&