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
REL_15_STABLE
Noah Misch 1 year ago
parent 5c837f8fa0
commit 0cf3d41cbb
  1. 2
      src/backend/executor/nodeModifyTable.c

@ -2827,7 +2827,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…
Cancel
Save