Uploaded image for project: 'Apache Arrow'
  1. Apache Arrow
  2. ARROW-56

Format: Specify LSB bit ordering in bit arrays

    XMLWordPrintableJSON

Details

    • New Feature
    • Status: Resolved
    • Major
    • Resolution: Fixed
    • None
    • 0.1.0
    • Format
    • None

    Description

      In https://github.com/apache/arrow/blob/master/format/Layout.md, we describe bitmaps for nulls (presumably same encoding for boolean data) and provide the C code for accessing a bit:

      bitmask[j / 8] & (1 << (j % 8))

      Implicitly this is LSB bit-endianness (https://en.wikipedia.org/wiki/Bit_numbering) – see the discussion of bitpacking in the Parquet format: https://github.com/apache/parquet-format/blob/master/Encodings.md#run-length-encoding--bit-packing-hybrid-rle--3

      If this is what we want, we should make this aspect of the format explicit.

      Attachments

        Activity

          People

            wesm Wes McKinney
            wesm Wes McKinney
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: