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

Function dumpQueryPlan

src/Planner/Utils.cpp:90–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

88}
89
90String dumpQueryPlan(const QueryPlan & query_plan)
91{
92 WriteBufferFromOwnString query_plan_buffer;
93 query_plan.explainPlan(query_plan_buffer, ExplainPlanOptions{true, true, true, true});
94
95 return query_plan_buffer.str();
96}
97
98String dumpQueryPipeline(const QueryPlan & query_plan)
99{

Callers 2

convertToDistributedMethod · 0.85

Calls 2

explainPlanMethod · 0.80
strMethod · 0.45

Tested by

no test coverage detected