| 99 | } |
| 100 | |
| 101 | Result<std::shared_ptr<Array>> NextChunk() { |
| 102 | EXPECT_LT(read_ptr_, static_cast<int64_t>(decoded_chunks_.size())); |
| 103 | return decoded_chunks_[read_ptr_++].result(); |
| 104 | } |
| 105 | |
| 106 | void AssertChunk(std::vector<std::string> chunk, std::shared_ptr<Array> expected) { |
| 107 | std::shared_ptr<BlockParser> parser; |