Fix minmax and basicstats aggregators to use uint64 (#4294)

This commit is contained in:
Adrián López
2018-06-30 04:07:08 +02:00
committed by Daniel Nelson
parent 1a781a5851
commit 85eacf268b
4 changed files with 30 additions and 0 deletions

View File

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