| 396 | *dst_val += *reinterpret_cast<int*>(src.ptr); |
| 397 | } |
| 398 | IMPALA_UDF_EXPORT |
| 399 | StringVal AggCharIntermediateSerialize(FunctionContext* context, const StringVal& in) { |
| 400 | ValidateCharIntermediateFunctionContext(context); |
| 401 | return in; |
| 402 | } |
| 403 | IMPALA_UDF_EXPORT |
| 404 | IntVal AggCharIntermediateFinalize(FunctionContext* context, const StringVal& src) { |
| 405 | ValidateCharIntermediateFunctionContext(context); |
nothing calls this directly
no test coverage detected