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
Currently, it's possible to choose any size for the blocks in the Dynamic bitset's template argument, but in the apache arrow documentation: https://arrow.apache.org/docs/dev/format/Columnar.html#validity-bitmaps
But using a block size greater than a byte will lead to endianess issues
The text was updated successfully, but these errors were encountered:
dynamic_bitest itself is a generic type, it's not designed to be specific to arrow. It's usage in the library, for example there, here the block size is 8bit, which matches the spec, isnt it? It can't be changed by the user AFAIK.
Currently, it's possible to choose any size for the blocks in the Dynamic bitset's template argument, but in the apache arrow documentation: https://arrow.apache.org/docs/dev/format/Columnar.html#validity-bitmaps
But using a block size greater than a byte will lead to endianess issues
The text was updated successfully, but these errors were encountered: