Query::fetch_one()
and Query::fetch_optional()
can still finish successfully even in the case of schema mismatch
#187
Labels
bug
Something isn't working
From the #186 (comment):
Query::fetch_one()
andQuery::fetch_optional()
can still finish successfully even in the case of schema mismatch, because they don't read the whole response. This is a trade-off made ages ago to avoid parsing unused bytes.Should we also revise that behavior? By the way, if the server returns a lot of rows (or large ones), it's possible to get EPIPE errors on the server side (because not all bytes are delivered).
We have several options here:
The text was updated successfully, but these errors were encountered: