Sven Klemm 8 lat temu
rodzic
commit
6cdd901ec6
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      pkg/tsdb/postgres/postgres.go

+ 1 - 1
pkg/tsdb/postgres/postgres.go

@@ -204,7 +204,7 @@ func (e PostgresQueryEndpoint) transformToTimeSeries(query *tsdb.Query, rows *co
 	fillValue := null.Float{}
 	if fillMissing {
 		fillInterval = query.Model.Get("fillInterval").MustFloat64() * 1000
-		if query.Model.Get("fillNULL").MustBool(false) == false {
+		if query.Model.Get("fillNull").MustBool(false) == false {
 			fillValue.Float64 = query.Model.Get("fillValue").MustFloat64()
 			fillValue.Valid = true
 		}