| 154 | assert(context->GetReturnType().scale == 0); |
| 155 | } |
| 156 | IMPALA_UDF_EXPORT |
| 157 | void AggStringIntermediateUpdate(FunctionContext* context, const DecimalVal&, |
| 158 | const BigIntVal&, const StringVal&, StringVal*) { |
| 159 | ValidateFunctionContext3(context); |
| 160 | } |
| 161 | IMPALA_UDF_EXPORT |
| 162 | void AggStringIntermediateInit(FunctionContext* context, StringVal*) { |
| 163 | ValidateFunctionContext3(context); |
nothing calls this directly
no test coverage detected