plugins: return table with empty rows array insteaf of nil

This commit is contained in:
Alexander Zobnin 2018-01-31 19:59:15 +03:00
parent 3a0459e425
commit db7890ec1e

View File

@ -125,6 +125,7 @@ func (tw *DatasourcePluginWrapper) mapTable(t *datasource.Table) (*tsdb.Table, e
})
}
table.Rows = make([]tsdb.RowValues, 0)
for _, r := range t.GetRows() {
row := tsdb.RowValues{}
for _, rv := range r.Values {