| 23 | }; |
| 24 | |
| 25 | struct PrettyColumnName |
| 26 | { |
| 27 | String expression; |
| 28 | String annotation; |
| 29 | |
| 30 | PrettyColumnName() = default; |
| 31 | |
| 32 | explicit PrettyColumnName(String expression_) |
| 33 | : expression(std::move(expression_)) {} |
| 34 | |
| 35 | PrettyColumnName(String expression_, String annotation_) |
| 36 | : expression(std::move(expression_)), annotation(std::move(annotation_)) {} |
| 37 | }; |
| 38 | |
| 39 | struct ExplainFormatSettings |
| 40 | { |
no outgoing calls
no test coverage detected