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

Function appendAggrParams

src/Client/BuzzHouse/Generator/SQLTypes.cpp:1435–1447  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1433}
1434
1435static void appendAggrParams(String & buf, const std::vector<AggregateParam> & params)
1436{
1437 if (params.empty())
1438 return;
1439 buf += "(";
1440 for (size_t i = 0; i < params.size(); i++)
1441 {
1442 if (i != 0)
1443 buf += ", ";
1444 AggregateParamToString(buf, params[i]);
1445 }
1446 buf += ")";
1447}
1448
1449String AggregateFunctionType::typeName(const bool escape, const bool simplified) const
1450{

Callers 3

typeNameMethod · 0.85
appendRandomRawValueMethod · 0.85
insertNumberEntryMethod · 0.85

Calls 3

AggregateParamToStringFunction · 0.85
emptyMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected