emkornfield commented on a change in pull request #7704: URL: https://github.com/apache/arrow/pull/7704#discussion_r453150104
########## File path: cpp/src/parquet/arrow/reader.cc ########## @@ -819,10 +812,7 @@ Status FileReaderImpl::ReadRowGroups(const std::vector<int>& row_groups, // We only need to read schema fields which have columns indicated // in the indices vector - std::vector<int> field_indices; - if (!manifest_.GetFieldIndices(indices, &field_indices)) { - return Status::Invalid("Invalid column index"); - } + ARROW_ASSIGN_OR_RAISE(auto field_indices, manifest_.GetFieldIndices(indices)); Review comment: please spell out type. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org