From a0712298e73551b6b618b8cd8fee41323a2cfcf1 Mon Sep 17 00:00:00 2001 From: ben hockey Date: Mon, 20 Apr 2015 17:06:32 -0500 Subject: [PATCH] return the values from stddev mapper function --- influxql/functions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/influxql/functions.go b/influxql/functions.go index 3ae5caba327..2b9469b1af2 100644 --- a/influxql/functions.go +++ b/influxql/functions.go @@ -386,7 +386,7 @@ func MapStddev(itr Iterator) interface{} { values = append(values, v.(float64)) } - return nil + return values } // ReduceStddev computes the stddev of values.