| 259 | std::unique_ptr<ColumnReader>* out); |
| 260 | |
| 261 | Status GetColumn(int i, std::unique_ptr<ColumnReader>* out) override { |
| 262 | return GetColumn(i, AllRowGroupsFactory(), out); |
| 263 | } |
| 264 | |
| 265 | Status GetSchema(std::shared_ptr<::arrow::Schema>* out) override { |
| 266 | return FromParquetSchema(reader_->metadata()->schema(), reader_properties_, |
nothing calls this directly
no test coverage detected