Parcourir la source

plugins: return table with empty rows array insteaf of nil

Alexander Zobnin il y a 8 ans
Parent
commit
db7890ec1e
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. 1 0
      pkg/plugins/datasource/wrapper/datasource_plugin_wrapper.go

+ 1 - 0
pkg/plugins/datasource/wrapper/datasource_plugin_wrapper.go

@@ -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() {
 	for _, r := range t.GetRows() {
 		row := tsdb.RowValues{}
 		row := tsdb.RowValues{}
 		for _, rv := range r.Values {
 		for _, rv := range r.Values {