| 20 | Scan::Scan(runtime::Relation& r) : Operator("scan"), rel(r) {} |
| 21 | Map::Map(std::unique_ptr<Operator> c) : UnaryOperator("map", move(c)) {} |
| 22 | Print::Print(std::unique_ptr<Operator> c, std::vector<std::string>&& att) |
| 23 | : UnaryOperator("print", move(c)), attributes(move(att)) {} |
| 24 | HashJoin::HashJoin(std::unique_ptr<Operator>&& build, |
| 25 | std::unique_ptr<Operator>&& probe) |
| 26 | : BinaryOperator("hashjoin", move(build), move(probe)) {} |
nothing calls this directly
no outgoing calls
no test coverage detected