fixed inaccurate vet reporting so this works now

pull/1591/head
Cory LaNou 2015-02-12 11:18:52 -07:00
parent 61d4cd6a5a
commit 2d638b5333
1 changed files with 1 additions and 2 deletions

View File

@ -2156,9 +2156,8 @@ func (s *Server) executeShowMeasurementsStatement(stmt *influxql.ShowMeasurement
// Make result.
result := &Result{
Rows: make(influxql.Rows, 1),
Rows: influxql.Rows{row},
}
result.Rows[0] = row
return result
}