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

Method getStepDescription

src/Processors/QueryPlan/IQueryPlanStep.cpp:76–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74}
75
76std::string_view IQueryPlanStep::getStepDescription() const
77{
78 if (std::holds_alternative<std::string_view>(step_description))
79 return std::get<std::string_view>(step_description);
80 if (std::holds_alternative<std::string>(step_description))
81 return std::get<std::string>(step_description);
82
83 return {};
84}
85
86void IQueryPlanStep::setStepDescription(std::string description, size_t limit)
87{

Callers 9

setQueryPlanStepMethod · 0.80
transformPipelineMethod · 0.80
explainStepFunction · 0.80
serializeMethod · 0.80
tryMergeExpressionsFunction · 0.80
tryMergeFiltersFunction · 0.80
trySplitFilterFunction · 0.80
tryLiftUpArrayJoinFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected