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

Function debugExplainStep

src/Processors/QueryPlan/QueryPlan.cpp:513–520  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

511}
512
513std::string debugExplainStep(IQueryPlanStep & step)
514{
515 WriteBufferFromOwnString out;
516 ExplainPlanOptions options{.actions = true};
517 IQueryPlanStep::FormatSettings settings{.out = out, .header_prefix = "", .detail_prefix = "", .pretty_names = {}, .runtime_filter_names = {}};
518 explainStep(step, settings, options, 0);
519 return out.str();
520}
521
522std::string debugExplainPlan(const QueryPlan & plan)
523{

Callers

nothing calls this directly

Calls 2

explainStepFunction · 0.85
strMethod · 0.45

Tested by

no test coverage detected