| 40 | Projector::~Projector() {} |
| 41 | |
| 42 | Status Projector::Make(SchemaPtr schema, const ExpressionVector& exprs, |
| 43 | std::shared_ptr<Projector>* projector) { |
| 44 | return Projector::Make(schema, exprs, SelectionVector::Mode::MODE_NONE, |
| 45 | ConfigurationBuilder::DefaultConfiguration(), projector); |
| 46 | } |
| 47 | |
| 48 | Status Projector::Make(SchemaPtr schema, const ExpressionVector& exprs, |
| 49 | std::shared_ptr<Configuration> configuration, |
nothing calls this directly
no test coverage detected