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

[C++] BitmapWriters clobber the first byte when length=0

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Minor
    • Resolution: Fixed
    • None
    • 0.12.0
    • C++

    Description

      When a BitmapWriter or FirstTimeBitmapWriter is constructed with length=0 then Finish() is invoked, the byte at start_offset / 8 is zeroed

      The following change causes the test to fail:

      --- a/cpp/src/arrow/util/bit-util-test.cc
      +++ b/cpp/src/arrow/util/bit-util-test.cc
      @@ -274,6 +274,10 @@ TEST(FirstTimeBitmapWriter, NormalOperation) {
               auto writer = internal::FirstTimeBitmapWriter(bitmap, 10, 3);
               WriteVectorToWriter(writer, {0, 0, 0});
             }
      +      {
      +        auto writer = internal::FirstTimeBitmapWriter(bitmap, 13, 0);
      +        WriteVectorToWriter(writer, {});
      +      }
             {
               auto writer = internal::FirstTimeBitmapWriter(bitmap, 13, 3);
               WriteVectorToWriter(writer, {1, 0, 1});
      

      Attachments

        Issue Links

          Activity

            People

              apitrou Antoine Pitrou
              bkietz Ben Kietzman
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Time Tracking

                  Estimated:
                  Original Estimate - Not Specified
                  Not Specified
                  Remaining:
                  Remaining Estimate - 0h
                  0h
                  Logged:
                  Time Spent - 40m
                  40m