| 67 | } |
| 68 | |
| 69 | void 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 | |
| 76 | QueryBuilder::ProjectionBuilder QueryBuilder::Project() { |
| 77 | auto project = make_unique<class Project>(); |
nothing calls this directly
no outgoing calls
no test coverage detected