[skip e2e] Add comment for internal/storage.Int8FieldData (#13992)

Signed-off-by: shaoyue.chen <shaoyue.chen@zilliz.com>
pull/14008/head
shaoyue 2021-12-22 19:31:51 +08:00 committed by GitHub
parent 33963955dc
commit ec91866a5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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)
}