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
This commit is contained in:
Alvaro Herrera 2022-11-17 12:52:20 +01:00
parent af3abca029
commit 01755490cf
No known key found for this signature in database
GPG Key ID: 1C20ACB9D5C564AE
1 changed files with 1 additions and 7 deletions

View File

@ -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: