fix udf dynamic memory leak of 4.0 branch

This commit is contained in:
obdev
2022-11-07 05:05:35 +00:00
committed by wangzelin.wzl
parent f61b55b314
commit a1f368d6b9
7 changed files with 36 additions and 5 deletions

View File

@ -403,7 +403,7 @@ int TriggerHandle::calc_trigger_routine(
trigger_id = ObTriggerInfo::get_trigger_spec_package_id(trigger_id);
OV (OB_NOT_NULL(exec_ctx.get_pl_engine()));
OZ (exec_ctx.get_pl_engine()->execute(
exec_ctx, trigger_id, routine_id, path, params, nocopy_params, result),
exec_ctx, exec_ctx.get_allocator(), trigger_id, routine_id, path, params, nocopy_params, result),
trigger_id, routine_id, params);
return ret;
}