| 1343 | } |
| 1344 | |
| 1345 | Status ProcessStruct() { |
| 1346 | RETURN_NOT_OK(f_parser_.CheckAtEnd()); |
| 1347 | ARROW_ASSIGN_OR_RAISE(auto fields, MakeChildFields()); |
| 1348 | type_ = struct_(std::move(fields)); |
| 1349 | return Status::OK(); |
| 1350 | } |
| 1351 | |
| 1352 | Status ProcessUnion() { |
| 1353 | RETURN_NOT_OK(f_parser_.CheckHasNext()); |
nothing calls this directly
no test coverage detected