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