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:30:12 -0500 |
commit | a9f304f5362f18b88fab04f342c99bd3d2c37944 (patch) | |
tree | ad8355fea5c12525675755d1c64c392cd3bd85e8 /src | |
parent | c74111d8bd6853b9944d004706dcc0cea2f2a25a (diff) | |
download | postgresql-a9f304f5362f18b88fab04f342c99bd3d2c37944.tar.gz postgresql-a9f304f5362f18b88fab04f342c99bd3d2c37944.zip |
Update neglected comment.
Commit d986d4e87f61c68f52c68ebc274960dc664b7b4e renamed a variable
but neglected to update the corresponding comment.
Amit Langote
Diffstat (limited to 'src')
-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 063d77eea23..e0dd1112f10 100644 --- a/src/backend/commands/trigger.c +++ b/src/backend/commands/trigger.c @@ -3036,8 +3036,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 |