| 431 | } |
| 432 | |
| 433 | Status ReadTable(const std::vector<int>& column_indices, |
| 434 | std::shared_ptr<::arrow::Table>* out) override { |
| 435 | ARROW_ASSIGN_OR_RAISE(*out, impl_->ReadRowGroup(row_group_index_, column_indices)); |
| 436 | return Status::OK(); |
| 437 | } |
| 438 | |
| 439 | Status ReadTable(std::shared_ptr<::arrow::Table>* out) override { |
| 440 | ARROW_ASSIGN_OR_RAISE(*out, impl_->ReadRowGroup(row_group_index_)); |
nothing calls this directly
no test coverage detected