| 76 | int GetNumLocalBitMaps() const { return local_bitmaps_holder_->GetNumLocalBitMaps(); } |
| 77 | |
| 78 | int64_t GetLocalBitmapSize() const { |
| 79 | return local_bitmaps_holder_->GetLocalBitMapSize(); |
| 80 | } |
| 81 | |
| 82 | const uint8_t* GetLocalBitMap(int idx) const { |
| 83 | ARROW_DCHECK(idx <= GetNumLocalBitMaps()); |
nothing calls this directly
no test coverage detected