| 93 | ValidateFunctionContext(context); |
| 94 | } |
| 95 | IMPALA_UDF_EXPORT |
| 96 | void AggIntermediateMerge(FunctionContext* context, const StringVal&, StringVal*) { |
| 97 | ValidateFunctionContext(context); |
| 98 | } |
| 99 | IMPALA_UDF_EXPORT |
| 100 | BigIntVal AggIntermediateFinalize(FunctionContext* context, const StringVal&) { |
| 101 | ValidateFunctionContext(context); |
nothing calls this directly
no test coverage detected