| 89 | ValidateFunctionContext(context); |
| 90 | } |
| 91 | IMPALA_UDF_EXPORT |
| 92 | void AggIntermediateInit(FunctionContext* context, StringVal*) { |
| 93 | ValidateFunctionContext(context); |
| 94 | } |
| 95 | IMPALA_UDF_EXPORT |
| 96 | void AggIntermediateMerge(FunctionContext* context, const StringVal&, StringVal*) { |
| 97 | ValidateFunctionContext(context); |
nothing calls this directly
no test coverage detected