Skip to content

Commit

Permalink
enhance: Fix typo of clustering key not loaded msg (milvus-io#35948)
Browse files Browse the repository at this point in the history
Related to milvus-io#35415

Signed-off-by: Congqi Xia <[email protected]>
  • Loading branch information
congqixia authored and chyezh committed Sep 11, 2024
1 parent 88b3678 commit 9e237d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/proxy/meta_cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ func (s *schemaInfo) validateLoadFields(names []string, fields []*schemapb.Field
return merr.WrapErrParameterInvalidMsg("load field list %v does not contain partition key field %s", names, partitionKeyField.GetName())
}
if clusteringKeyField != nil && !hasClusteringKey {
return merr.WrapErrParameterInvalidMsg("load field list %v does not contain clsutering key field %s", names, clusteringKeyField.GetName())
return merr.WrapErrParameterInvalidMsg("load field list %v does not contain clustering key field %s", names, clusteringKeyField.GetName())
}
return nil
}
Expand Down

0 comments on commit 9e237d2

Please sign in to comment.