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

Method describeActions

src/Processors/QueryPlan/FillingStep.cpp:61–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

59}
60
61void FillingStep::describeActions(FormatSettings & settings) const
62{
63 const String & prefix = settings.detail_prefix;
64 settings.out << prefix;
65 dumpSortDescription(sort_description, settings);
66 settings.out << '\n';
67 if (interpolate_description)
68 {
69 auto expression = std::make_shared<ExpressionActions>(interpolate_description->actions.clone());
70 if (!settings.compact)
71 expression->describeActions(settings.out, prefix);
72 }
73}
74
75void FillingStep::describeActions(JSONBuilder::JSONMap & map) const
76{

Callers

nothing calls this directly

Calls 5

dumpSortDescriptionFunction · 0.85
explainSortDescriptionFunction · 0.85
cloneMethod · 0.45
addMethod · 0.45
toTreeMethod · 0.45

Tested by

no test coverage detected