| 1433 | } |
| 1434 | |
| 1435 | static 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 | |
| 1449 | String AggregateFunctionType::typeName(const bool escape, const bool simplified) const |
| 1450 | { |
no test coverage detected