| 1349 | } |
| 1350 | |
| 1351 | Status FileReader::ReadRowGroup(int i, const std::vector<int>& column_indices, |
| 1352 | std::shared_ptr<Table>* out) { |
| 1353 | ARROW_ASSIGN_OR_RAISE(*out, ReadRowGroup(i, column_indices)); |
| 1354 | return Status::OK(); |
| 1355 | } |
| 1356 | |
| 1357 | Status FileReader::ReadRowGroup(int i, std::shared_ptr<Table>* out) { |
| 1358 | ARROW_ASSIGN_OR_RAISE(*out, ReadRowGroup(i)); |