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

Method Select

publication/source_code/bench_end_to_end/src/vectorwise/QueryBuilder.cpp:69–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69void QueryBuilder::Select(std::unique_ptr<class Expression>&& exp) {
70 auto select = make_unique<class Select>();
71 select->condition = move(exp);
72 select->child = popOperator();
73 pushOperator(move(select));
74}
75
76QueryBuilder::ProjectionBuilder QueryBuilder::Project() {
77 auto project = make_unique<class Project>();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected