Fix minmax and basicstats aggregators to use uint64 (#4294)
This commit is contained in:
committed by
Daniel Nelson
parent
1a781a5851
commit
85eacf268b
@@ -246,6 +246,8 @@ func convert(in interface{}) (float64, bool) {
|
||||
return v, true
|
||||
case int64:
|
||||
return float64(v), true
|
||||
case uint64:
|
||||
return float64(v), true
|
||||
default:
|
||||
return 0, false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user