Skip to content

Commit 136e68b

Browse files
committed
Fix a few more redundant calls of GetLatestSnapshot()
Commit 2367503 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
1 parent 2ef0488 commit 136e68b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/executor/execReplication.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ RelationFindReplTupleSeq(Relation rel, LockTupleMode lockmode,
359359

360360
PushActiveSnapshot(GetLatestSnapshot());
361361

362-
res = table_tuple_lock(rel, &(outslot->tts_tid), GetLatestSnapshot(),
362+
res = table_tuple_lock(rel, &(outslot->tts_tid), GetActiveSnapshot(),
363363
outslot,
364364
GetCurrentCommandId(false),
365365
lockmode,

0 commit comments

Comments
 (0)