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

Class PrettyColumnName

src/Processors/QueryPlan/QueryPlanFormat.h:25–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23};
24
25struct PrettyColumnName
26{
27 String expression;
28 String annotation;
29
30 PrettyColumnName() = default;
31
32 explicit PrettyColumnName(String expression_)
33 : expression(std::move(expression_)) {}
34
35 PrettyColumnName(String expression_, String annotation_)
36 : expression(std::move(expression_)), annotation(std::move(annotation_)) {}
37};
38
39struct ExplainFormatSettings
40{

Callers 5

formatFilterPrettyFunction · 0.85
addAggregatesPrettyNamesFunction · 0.85
buildPrettyNamesForNodeFunction · 0.85
explainPlanMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected