| 1233 | } |
| 1234 | |
| 1235 | Status ProcessTimestamp() { |
| 1236 | ARROW_ASSIGN_OR_RAISE(auto unit, f_parser_.ParseTimeUnit()); |
| 1237 | RETURN_NOT_OK(f_parser_.CheckNext(':')); |
| 1238 | type_ = timestamp(unit, std::string(f_parser_.Rest())); |
| 1239 | return Status::OK(); |
| 1240 | } |
| 1241 | |
| 1242 | Status ProcessFixedSizeBinary() { |
| 1243 | RETURN_NOT_OK(f_parser_.CheckNext(':')); |