MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / toSettingsChanges

Method toSettingsChanges

src/Processors/QueryPlan/QueryPlan.cpp:75–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73}
74
75SettingsChanges 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
93QueryPlan::QueryPlan() = default;
94QueryPlan::~QueryPlan() = default;

Callers 1

makeExplainFunction · 0.45

Calls 1

emplace_backMethod · 0.45

Tested by

no test coverage detected