diff options
author | Heikki Linnakangas | 2025-03-10 16:54:58 +0000 |
---|---|---|
committer | Heikki Linnakangas | 2025-03-10 17:00:08 +0000 |
commit | f1ef111a0940fedace997fe740fb221b068cf6ee (patch) | |
tree | 744baeaa305bd0681c3e5664030751a3e239c042 /src | |
parent | c1dd3a9443991244b7cfac407cdb23150e97b46a (diff) |
Fix a few more redundant calls of GetLatestSnapshot()
Commit 2367503177 fixed this in RelationFindReplTupleByIndex(), but I
missed two other similar cases.
Per report from Ranier Vilela.
Discussion: https://www.postgresql.org/message-id/CAEudQArUT1dE45WN87F-Gb7XMy_hW6x1DFd3sqdhhxP-RMDa0Q@mail.gmail.com
Backpatch-through: 13
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/executor/execReplication.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/execReplication.c b/src/backend/executor/execReplication.c index 9a57698d221..cb1202e4506 100644 --- a/src/backend/executor/execReplication.c +++ b/src/backend/executor/execReplication.c @@ -434,7 +434,7 @@ retry: PushActiveSnapshot(GetLatestSnapshot()); - res = table_tuple_lock(rel, &(outslot->tts_tid), GetLatestSnapshot(), + res = table_tuple_lock(rel, &(outslot->tts_tid), GetActiveSnapshot(), outslot, GetCurrentCommandId(false), lockmode, |