| 233 | } |
| 234 | |
| 235 | IMPALA_UDF_EXPORT |
| 236 | BigIntVal MemTestSerialize(FunctionContext* context, const BigIntVal& total) { |
| 237 | if (total.is_null) return BigIntVal(0); |
| 238 | context->Free(total.val); |
| 239 | return total; |
| 240 | } |
| 241 | |
| 242 | IMPALA_UDF_EXPORT |
| 243 | BigIntVal MemTestFinalize(FunctionContext* context, const BigIntVal& total) { |