| 167 | ValidateFunctionContext3(context); |
| 168 | } |
| 169 | IMPALA_UDF_EXPORT |
| 170 | DecimalVal AggStringIntermediateFinalize(FunctionContext* context, const StringVal&) { |
| 171 | ValidateFunctionContext3(context); |
| 172 | return DecimalVal(100); |
| 173 | } |
| 174 | |
| 175 | // Defines AggDateIntermediate(DATE, INT) returns DATE |
| 176 | // intermediate DATE |
nothing calls this directly
no test coverage detected