()
| 157 | } |
| 158 | |
| 159 | func (s *QueryStats) LoadFetchedChunkBytes() uint64 { |
| 160 | if s == nil { |
| 161 | return 0 |
| 162 | } |
| 163 | |
| 164 | return atomic.LoadUint64(&s.FetchedChunkBytes) |
| 165 | } |
| 166 | |
| 167 | func (s *QueryStats) AddFetchedDataBytes(bytes uint64) { |
| 168 | if s == nil { |
no outgoing calls