| 38 | } |
| 39 | |
| 40 | OptionalBitBlockCounter::OptionalBitBlockCounter(const uint8_t* validity_bitmap, |
| 41 | int64_t offset, int64_t length) |
| 42 | : has_bitmap_(validity_bitmap != nullptr), |
| 43 | position_(0), |
| 44 | length_(length), |
| 45 | counter_(util::MakeNonNull(validity_bitmap), offset, length) {} |
| 46 | |
| 47 | OptionalBitBlockCounter::OptionalBitBlockCounter( |
| 48 | const std::shared_ptr<Buffer>& validity_bitmap, int64_t offset, int64_t length) |
nothing calls this directly
no test coverage detected