| 85 | assert(context->GetReturnType().type == FunctionContext::TYPE_BIGINT); |
| 86 | } |
| 87 | IMPALA_UDF_EXPORT |
| 88 | void AggIntermediateUpdate(FunctionContext* context, const IntVal&, StringVal*) { |
| 89 | ValidateFunctionContext(context); |
| 90 | } |
| 91 | IMPALA_UDF_EXPORT |
| 92 | void AggIntermediateInit(FunctionContext* context, StringVal*) { |
| 93 | ValidateFunctionContext(context); |
nothing calls this directly
no test coverage detected