We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 86523be + cd28057 commit b82a972Copy full SHA for b82a972
src/firebird/driver/core.py
@@ -3618,7 +3618,7 @@ def _unpack_output(self) -> Tuple:
3618
val = buffer[offset:offset+length]
3619
blobid = a.ISC_QUAD((0).from_bytes(val[:4], 'little'),
3620
(0).from_bytes(val[4:], 'little'))
3621
- blob = self._connection._att.open_blob(self._transaction._tra, blobid, _bpb_stream)
+ blob = self._connection._att.open_blob(self._transaction._tra, blobid)
3622
# Get BLOB total length and max. size of segment
3623
blob_length = blob.get_info2(BlobInfoCode.TOTAL_LENGTH)
3624
segment_size = blob.get_info2(BlobInfoCode.MAX_SEGMENT)
0 commit comments