| 1386 | } |
| 1387 | |
| 1388 | void AggregateFunctions::StringConcatUpdate( |
| 1389 | FunctionContext* ctx, const StringVal& src, StringVal* result) { |
| 1390 | StringConcatUpdate(ctx, src, DefaultStringConcatDelim(), result); |
| 1391 | } |
| 1392 | |
| 1393 | void AggregateFunctions::StringConcatUpdate(FunctionContext* ctx, const StringVal& src, |
| 1394 | const StringVal& separator, StringVal* result) { |
nothing calls this directly
no test coverage detected