| 1293 | |
| 1294 | template <typename ListViewType> |
| 1295 | Status ProcessListView() { |
| 1296 | RETURN_NOT_OK(f_parser_.CheckAtEnd()); |
| 1297 | RETURN_NOT_OK(CheckNumChildren(1)); |
| 1298 | ARROW_ASSIGN_OR_RAISE(auto field, MakeChildField(0)); |
| 1299 | type_ = std::make_shared<ListViewType>(std::move(field)); |
| 1300 | return Status::OK(); |
| 1301 | } |
| 1302 | |
| 1303 | Status ProcessMap() { |
| 1304 | RETURN_NOT_OK(f_parser_.CheckAtEnd()); |
nothing calls this directly
no test coverage detected