| 35 | inline void setReturnClause(ReturnClause clause) { returnClause = std::move(clause); } |
| 36 | inline bool hasReturnClause() const { return returnClause.has_value(); } |
| 37 | inline const ReturnClause* getReturnClause() const { |
| 38 | DASSERT(returnClause.has_value()); |
| 39 | return &returnClause.value(); |
| 40 | } |
| 41 | |
| 42 | private: |
| 43 | std::vector<QueryPart> queryParts; |
no outgoing calls
no test coverage detected