| 878 | } |
| 879 | |
| 880 | void SetProjection(ScanOptions* options, ProjectionDescr projection) { |
| 881 | options->projection = std::move(projection.expression); |
| 882 | options->projected_schema = std::move(projection.schema); |
| 883 | } |
| 884 | |
| 885 | ScannerBuilder::ScannerBuilder(std::shared_ptr<Dataset> dataset) |
| 886 | : ScannerBuilder(std::move(dataset), std::make_shared<ScanOptions>()) {} |
no outgoing calls