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