mirror of
https://github.com/postgres/postgres.git
synced 2026-06-08 16:26:30 -04:00
Fix use of uninitialized value in previous commit.
Per buildfarm member akepa and others. Back-patch to v16 and v15. Discussion: https://postgr.es/m/20240924224352.93.nmisch@google.com
This commit is contained in:
parent
51ff46de29
commit
90f5412a9a
1 changed files with 1 additions and 1 deletions
|
|
@ -2846,7 +2846,7 @@ ExecMergeMatched(ModifyTableContext *context, ResultRelInfo *resultRelInfo,
|
|||
* If there are no WHEN MATCHED actions, we are done.
|
||||
*/
|
||||
if (resultRelInfo->ri_matchedMergeAction == NIL)
|
||||
goto out;
|
||||
return no_further_action;
|
||||
|
||||
/*
|
||||
* Make tuple and any needed join variables available to ExecQual and
|
||||
|
|
|
|||
Loading…
Reference in a new issue