Skip to content

Commit

Permalink
Fix bad merge with master
Browse files Browse the repository at this point in the history
  • Loading branch information
otoolep committed Apr 1, 2015
1 parent 85121cc commit cfff34f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions server.go
Original file line number Diff line number Diff line change
Expand Up @@ -2165,13 +2165,11 @@ func (s *Server) executeSelectStatement(statementID int, stmt *influxql.SelectSt
resultSent := false
for row := range ch {
if row.Err != nil {
res.Err = row.Err
return row.Err
} else {
resultSent = true
results <- &Result{StatementID: statementID, Series: []*influxql.Row{row}}
}
res.Series = append(res.Series, row)
}

if !resultSent {
Expand Down

0 comments on commit cfff34f

Please sign in to comment.