| 1629 | }; |
| 1630 | |
| 1631 | Result<FileBlock> GetRecordBatchBlock(int i) const { |
| 1632 | return FileBlockFromFlatbuffer(footer_->recordBatches()->Get(i), footer_offset_); |
| 1633 | } |
| 1634 | |
| 1635 | Result<FileBlock> GetDictionaryBlock(int i) const { |
| 1636 | return FileBlockFromFlatbuffer(footer_->dictionaries()->Get(i), footer_offset_); |
nothing calls this directly
no test coverage detected