Fix outdated comment in ExecDelete

This commend references a struct that disappeared before MERGE was
merged ... and ExecDelete is not called by the committed MERGE anyway.
Revert to the original wording.

Backpatch to 15
pull/138/head^2
Alvaro Herrera 3 years ago
parent af3abca029
commit 01755490cf
No known key found for this signature in database
GPG Key ID: 1C20ACB9D5C564AE
  1. 8
      src/backend/executor/nodeModifyTable.c

@ -1515,13 +1515,7 @@ ldelete:
ereport(ERROR,
(errcode(ERRCODE_T_R_SERIALIZATION_FAILURE),
errmsg("could not serialize access due to concurrent delete")));
/*
* tuple already deleted; nothing to do. But MERGE might want
* to handle it differently. We've already filled-in
* actionInfo with sufficient information for MERGE to look
* at.
*/
/* tuple already deleted; nothing to do */
return NULL;
default:

Loading…
Cancel
Save