| 401 | return in; |
| 402 | } |
| 403 | IMPALA_UDF_EXPORT |
| 404 | IntVal AggCharIntermediateFinalize(FunctionContext* context, const StringVal& src) { |
| 405 | ValidateCharIntermediateFunctionContext(context); |
| 406 | return IntVal(*reinterpret_cast<int*>(src.ptr)); |
| 407 | } |
| 408 |
nothing calls this directly
no test coverage detected