| 320 | const std::vector<int>& column_indices, ::arrow::internal::Executor* cpu_executor); |
| 321 | |
| 322 | Result<std::shared_ptr<Table>> ReadRowGroups( |
| 323 | const std::vector<int>& row_groups) override { |
| 324 | return ReadRowGroups(row_groups, Iota(reader_->metadata()->num_columns())); |
| 325 | } |
| 326 | |
| 327 | Result<std::shared_ptr<Table>> ReadRowGroup( |
| 328 | int row_group_index, const std::vector<int>& column_indices) override { |
nothing calls this directly
no test coverage detected