| 872 | } |
| 873 | |
| 874 | Result<ProjectionDescr> ProjectionDescr::Default(const Schema& dataset_schema, |
| 875 | bool add_augmented_fields) { |
| 876 | return ProjectionDescr::FromNames(dataset_schema.field_names(), dataset_schema, |
| 877 | add_augmented_fields); |
| 878 | } |
| 879 | |
| 880 | void SetProjection(ScanOptions* options, ProjectionDescr projection) { |
| 881 | options->projection = std::move(projection.expression); |
nothing calls this directly
no test coverage detected