| 86 | SelectQueryOptions copy() const { return *this; } |
| 87 | |
| 88 | SelectQueryOptions subquery() const |
| 89 | { |
| 90 | SelectQueryOptions out = *this; |
| 91 | out.to_stage = QueryProcessingStage::Complete; |
| 92 | ++out.subquery_depth; |
| 93 | out.is_subquery = true; |
| 94 | return out; |
| 95 | } |
| 96 | |
| 97 | SelectQueryOptions & analyze(bool dry_run = true) |
| 98 | { |
no outgoing calls
no test coverage detected