diff options
author | Robert Haas <rhaas@postgresql.org> | 2019-12-19 09:24:44 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2019-12-19 09:24:44 -0500 |
commit | 7cdcc747a9fe588f9e9b3a5d3feb650340093fb2 (patch) | |
tree | 7248a25e2b72cc3ac36eac0ac06200db24d03af9 /src/backend/commands/trigger.c | |
parent | 303640199d0436c5e7acdf50b837a027b5726594 (diff) | |
download | postgresql-7cdcc747a9fe588f9e9b3a5d3feb650340093fb2.tar.gz postgresql-7cdcc747a9fe588f9e9b3a5d3feb650340093fb2.zip |
Update neglected comment.
Commit d986d4e87f61c68f52c68ebc274960dc664b7b4e renamed a variable
but neglected to update the corresponding comment.
Amit Langote
Diffstat (limited to 'src/backend/commands/trigger.c')
-rw-r--r-- | src/backend/commands/trigger.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/trigger.c b/src/backend/commands/trigger.c index faeea16d21a..99cb5bf557b 100644 --- a/src/backend/commands/trigger.c +++ b/src/backend/commands/trigger.c @@ -3033,8 +3033,8 @@ ExecBRUpdateTriggers(EState *estate, EPQState *epqstate, /* * In READ COMMITTED isolation level it's possible that target tuple * was changed due to concurrent update. In that case we have a raw - * subplan output tuple in newSlot, and need to run it through the - * junk filter to produce an insertable tuple. + * subplan output tuple in epqslot_candidate, and need to run it + * through the junk filter to produce an insertable tuple. * * Caution: more than likely, the passed-in slot is the same as the * junkfilter's output slot, so we are clobbering the original value |