You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem seems to be that you calculate the wrong length for the null bitset, which results in an off-by-4 error in reading the response (depending on the number of columns you're selecting):
Specifically:
if xsqlda.vars.len % 8 == 0 {
should be
if xsqlda.vars.len % 8 != 0 {
Though I would actually recommend to remove that if and instead use
Currently, wireprotocol documents version 10, and some parts of version 11 and 16 (batches).
The text was updated successfully, but these errors were encountered: