| 37 | using ::testing::ElementsAreArray; |
| 38 | |
| 39 | std::string BitmapToString(const uint8_t* bitmap, int64_t bit_count) { |
| 40 | return ::arrow::internal::Bitmap(bitmap, /*offset*/ 0, /*length=*/bit_count).ToString(); |
| 41 | } |
| 42 | |
| 43 | std::string BitmapToString(const std::vector<uint8_t>& bitmap, int64_t bit_count) { |
| 44 | return BitmapToString(bitmap.data(), bit_count); |
no test coverage detected