| 284 | } |
| 285 | |
| 286 | Status ParseAndInsert(const ChunkedBlock& block) { |
| 287 | ARROW_ASSIGN_OR_RAISE(auto parsed, ParseBlock(block, decode_context_.parse_options(), |
| 288 | decode_context_.pool())); |
| 289 | builder_->Insert(block.index, field("", parsed->type()), parsed); |
| 290 | return Status::OK(); |
| 291 | } |
| 292 | |
| 293 | DecodeContext decode_context_; |
| 294 | ReadOptions read_options_; |