diff options
author | Jeff Davis <jdavis@postgresql.org> | 2018-08-25 22:45:59 -0700 |
---|---|---|
committer | Jeff Davis <jdavis@postgresql.org> | 2018-08-25 22:52:46 -0700 |
commit | ba9d35b8eb8466cf445c732a2e15ca5790cbc6c6 (patch) | |
tree | 7f6fc2f1234c4bf6bf788b9f4784a6448708a9b0 /src | |
parent | cc2e457fe8a3f685b4f9b9dce05b0c027b39459f (diff) | |
download | postgresql-ba9d35b8eb8466cf445c732a2e15ca5790cbc6c6.tar.gz postgresql-ba9d35b8eb8466cf445c732a2e15ca5790cbc6c6.zip |
Reconsider new file extension in commit 91f26d5f.
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
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/replication/logical/reorderbuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/reorderbuffer.c b/src/backend/replication/logical/reorderbuffer.c index 0d72ac1c791..dbd935515a0 100644 --- a/src/backend/replication/logical/reorderbuffer.c +++ b/src/backend/replication/logical/reorderbuffer.c @@ -2785,7 +2785,7 @@ ReorderBufferSerializedPath(char *path, ReplicationSlot *slot, TransactionId xid XLogSegNoOffsetToRecPtr(segno, 0, wal_segment_size, recptr); - snprintf(path, MAXPGPATH, "pg_replslot/%s/xid-%u-lsn-%X-%X.tmp", + snprintf(path, MAXPGPATH, "pg_replslot/%s/xid-%u-lsn-%X-%X.spill", NameStr(MyReplicationSlot->data.name), xid, (uint32) (recptr >> 32), (uint32) recptr); |