| 216 | |
| 217 | template <typename T> |
| 218 | void AggregateFunctions::UpdateVal(FunctionContext* ctx, const T& src, T* dst) { |
| 219 | *dst = src; |
| 220 | } |
| 221 | |
| 222 | template <> |
| 223 | void AggregateFunctions::UpdateVal(FunctionContext* ctx, const StringVal& src, |
nothing calls this directly
no test coverage detected