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

Method dump

src/Interpreters/WindowDescription.cpp:18–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16}
17
18std::string WindowFunctionDescription::dump() const
19{
20 WriteBufferFromOwnString ss;
21
22 ss << "window function '" << column_name << "\n";
23 if (function_node)
24 ss << "function node " << function_node->dumpTree() << "\n";
25 ss << "aggregate function '" << aggregate_function->getName() << "'\n";
26 if (!function_parameters.empty())
27 {
28 ss << "parameters " << toString(function_parameters) << "\n";
29 }
30
31 return ss.str();
32}
33
34std::string WindowDescription::dump() const
35{

Callers

nothing calls this directly

Calls 6

dumpSortDescriptionFunction · 0.85
toStringFunction · 0.70
dumpTreeMethod · 0.45
getNameMethod · 0.45
emptyMethod · 0.45
strMethod · 0.45

Tested by

no test coverage detected