| 472 | } |
| 473 | |
| 474 | IMPALA_UDF_EXPORT |
| 475 | BigIntVal DoubleFreeTest(FunctionContext* context, BigIntVal bytes) { |
| 476 | context->TrackAllocation(bytes.val); |
| 477 | context->Free(bytes.val); |
| 478 | context->Free(bytes.val); |
| 479 | return bytes; |
| 480 | } |
| 481 | |
| 482 | extern "C" |
| 483 | IMPALA_UDF_EXPORT |
nothing calls this directly
no test coverage detected