Merge pull request #50 from influxdata/js-csv-decoder-fix
fix(query/csv): the csv decoder should return false from More() if an error happenspull/10616/head
commit
c1ff42857c
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue