Use int64 for fields in bind plugin (#6063)

This commit is contained in:
Daniel Nelson
2019-07-03 16:28:11 -07:00
committed by GitHub
parent 9af39bbb7d
commit ad5d5844c7
4 changed files with 44 additions and 46 deletions

View File

@@ -23,16 +23,16 @@ type jsonStats struct {
}
type jsonMemory struct {
TotalUse int
InUse int
BlockSize int
ContextSize int
Lost int
TotalUse int64
InUse int64
BlockSize int64
ContextSize int64
Lost int64
Contexts []struct {
Id string
Name string
Total int
InUse int
Total int64
InUse int64
}
}