Merge pull request #50 from influxdata/js-csv-decoder-fix

fix(query/csv): the csv decoder should return false from More() if an error happens
pull/10616/head
Jonathan A. Sternberg 2018-05-25 12:45:09 -05:00 committed by GitHub
commit c1ff42857c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ func (r *resultIterator) More() bool {
extraMeta = r.next.extraMeta
}
r.next, r.err = newResultDecoder(r.r, r.c, extraMeta)
return true
return r.err == nil
}
return false
}