Skip to content

Commit

Permalink
fix: minor
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhatha committed Dec 20, 2023
1 parent 1c48d69 commit b5abd90
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ protected ArrowBuf doDecompress(BufferAllocator allocator, ArrowBuf compressedBu
byte[] outBytes = out.toByteArray();
ArrowBuf decompressedBuffer = allocator.buffer(outBytes.length);
decompressedBuffer.setBytes(/*index=*/0, outBytes);
decompressedBuffer.writerIndex(decompressedLength);
return decompressedBuffer;
}

Expand Down

0 comments on commit b5abd90

Please sign in to comment.