We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b78011 commit dcfd85cCopy full SHA for dcfd85c
src/pl/ob_pl.cpp
@@ -2513,9 +2513,12 @@ int ObPLExecuteArg::obtain_routine(ObExecContext &ctx,
2513
{
2514
int ret = OB_SUCCESS;
2515
ObPLFunction *local_routine = NULL;
2516
+ ObPLPackageGuard *package_guard = nullptr;
2517
+ OZ (ctx.get_package_guard(package_guard));
2518
+ CK (OB_NOT_NULL(package_guard));
2519
2520
OZ (GCTX.pl_engine_->get_pl_function(ctx,
- *ctx.get_package_guard(),
2521
+ *package_guard,
2522
package_id,
2523
routine_id,
2524
subprogram_path,
0 commit comments