| 1398 | } |
| 1399 | |
| 1400 | Status FileReader::ReadRowGroup(int i, const std::vector<int>& column_indices, |
| 1401 | std::shared_ptr<Table>* out) { |
| 1402 | ARROW_ASSIGN_OR_RAISE(*out, ReadRowGroup(i, column_indices)); |
| 1403 | return Status::OK(); |
| 1404 | } |
| 1405 | |
| 1406 | Status FileReader::ReadRowGroup(int i, std::shared_ptr<Table>* out) { |
| 1407 | ARROW_ASSIGN_OR_RAISE(*out, ReadRowGroup(i)); |