| 91 | SelectQueryOptions copy() const { return *this; } |
| 92 | |
| 93 | SelectQueryOptions subquery() const |
| 94 | { |
| 95 | SelectQueryOptions out = *this; |
| 96 | out.to_stage = QueryProcessingStage::Complete; |
| 97 | ++out.subquery_depth; |
| 98 | out.is_subquery = true; |
| 99 | return out; |
| 100 | } |
| 101 | |
| 102 | SelectQueryOptions & createView(bool value = true) |
| 103 | { |
no outgoing calls
no test coverage detected