MCPcopy Create free account
hub / github.com/cwida/ALP / Print

Method Print

publication/source_code/bench_end_to_end/src/common/algebra/Operators.cpp:22–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected