| 428 | : impl_(impl), row_group_index_(row_group_index) {} |
| 429 | |
| 430 | std::shared_ptr<ColumnChunkReader> Column(int column_index) override { |
| 431 | return std::make_shared<ColumnChunkReaderImpl>(impl_, row_group_index_, column_index); |
| 432 | } |
| 433 | |
| 434 | Status ReadTable(const std::vector<int>& column_indices, |
| 435 | std::shared_ptr<::arrow::Table>* out) override { |
no outgoing calls