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
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
BooleanBufferBuilder currently has no mechanism to append an already packed bitmask, instead requiring bitwise iteration through the mask. This is particularly wasteful where the BooleanBufferBuilder has a length that is a multiple of 8, where a simple memcpy would suffice. I ran into this limitation whilst working on #1037
Describe the solution you'd like
In IOx we have a BitSet implementation that allows directly appending a bitmask - see here. This logic could pretty much just be copied and pasted into arrow.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
BooleanBufferBuilder
currently has no mechanism to append an already packed bitmask, instead requiring bitwise iteration through the mask. This is particularly wasteful where theBooleanBufferBuilder
has a length that is a multiple of 8, where a simple memcpy would suffice. I ran into this limitation whilst working on #1037Describe the solution you'd like
In IOx we have a BitSet implementation that allows directly appending a bitmask - see here. This logic could pretty much just be copied and pasted into arrow.
The text was updated successfully, but these errors were encountered: