| 73 | } |
| 74 | |
| 75 | SettingsChanges ExplainPlanOptions::toSettingsChanges() const |
| 76 | { |
| 77 | SettingsChanges changes; |
| 78 | changes.emplace_back("header", int(header)); |
| 79 | changes.emplace_back("description", int(description)); |
| 80 | changes.emplace_back("actions", int(actions)); |
| 81 | changes.emplace_back("indexes", int(indexes)); |
| 82 | changes.emplace_back("projections", int(projections)); |
| 83 | changes.emplace_back("sorting", int(sorting)); |
| 84 | changes.emplace_back("distributed", int(distributed)); |
| 85 | changes.emplace_back("input_headers", int(input_headers)); |
| 86 | changes.emplace_back("column_structure", int(column_structure)); |
| 87 | changes.emplace_back("pretty", int(pretty)); |
| 88 | changes.emplace_back("compact", int(compact)); |
| 89 | |
| 90 | return changes; |
| 91 | } |
| 92 | |
| 93 | QueryPlan::QueryPlan() = default; |
| 94 | QueryPlan::~QueryPlan() = default; |
no test coverage detected