Skip to content

Commit ba9d35b

Browse files
committed
Reconsider new file extension in commit 91f26d5.
Andres and Tom objected to the choice of the ".tmp" extension. Changing to Andres's suggestion of ".spill". Discussion: https://postgr.es/m/88092095-3348-49D8-8746-EB574B1D30EA%40anarazel.de
1 parent cc2e457 commit ba9d35b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/replication/logical/reorderbuffer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2785,7 +2785,7 @@ ReorderBufferSerializedPath(char *path, ReplicationSlot *slot, TransactionId xid
27852785

27862786
XLogSegNoOffsetToRecPtr(segno, 0, wal_segment_size, recptr);
27872787

2788-
snprintf(path, MAXPGPATH, "pg_replslot/%s/xid-%u-lsn-%X-%X.tmp",
2788+
snprintf(path, MAXPGPATH, "pg_replslot/%s/xid-%u-lsn-%X-%X.spill",
27892789
NameStr(MyReplicationSlot->data.name),
27902790
xid,
27912791
(uint32) (recptr >> 32), (uint32) recptr);

0 commit comments

Comments
 (0)