asfernandes / node-firebird-drivers

Node.js Firebird Drivers
MIT License
53 stars 17 forks source link

Fetching BLOB (seg type 1) will only load the first 32078 bytes #35

Closed mreis1 closed 4 years ago

mreis1 commented 4 years ago
const blobStream = await attachment.openBlob(transaction, blob);

let len = await blobStream.length; 

If the MEMO stored is 32278 bytes, during the fetch it's "len" will be estimated to only 32078.

asfernandes commented 4 years ago

Looks like same reason than #36.