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
fix!: Change ArrowBufferResize() and ArrowBitmapResize() to update size_bytes (#459)
Currently, `ArrowBufferResize()` and `ArrowBitmapResize()` update the
*capacity* of the underlying buffer but do not update the *size*. This
was documented and is consistent with Arrow C++'s `BufferBuilder` but
inconsistent with `std::vector`, Arrow C++'s `PoolBuffer`, and user
expectations given the name of the function.
After this PR, `ArrowBufferResize()` and `ArrowBitmapResize()` update
the `size_bytes` of the underlying buffer.
This is a breaking change.
0 commit comments