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