| 3283 | |
| 3284 | template <typename T> |
| 3285 | void AggregateFunctions::AggIfUpdate( |
| 3286 | FunctionContext* ctx, const BooleanVal& cond, const T& src, T* dst) { |
| 3287 | if (!cond.is_null && cond.val) *dst = src; |
| 3288 | } |
| 3289 | |
| 3290 | template <> |
| 3291 | void AggregateFunctions::AggIfUpdate( |
nothing calls this directly
no test coverage detected