(key string, result interface{}, err error)
| 256 | } |
| 257 | |
| 258 | func (a *AggSumAggregator) AddWithKey(key string, result interface{}, err error) error { |
| 259 | return a.Add(result, err) |
| 260 | } |
| 261 | |
| 262 | func (a *AggSumAggregator) BatchSlice(results []AggregatorResErr) error { |
| 263 | var sum int64 |