mirror of https://github.com/milvus-io/milvus.git
[skip e2e] Add comment for internal/storage.Int8FieldData (#13992)
Signed-off-by: shaoyue.chen <shaoyue.chen@zilliz.com>pull/14008/head
parent
33963955dc
commit
ec91866a5c
|
@ -187,6 +187,7 @@ func (data *BoolFieldData) GetMemorySize() int {
|
|||
return binary.Size(data.NumRows) + binary.Size(data.Data)
|
||||
}
|
||||
|
||||
// GetMemorySize implements FieldData.GetMemorySize
|
||||
func (data *Int8FieldData) GetMemorySize() int {
|
||||
return binary.Size(data.NumRows) + binary.Size(data.Data)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue