summaryrefslogtreecommitdiff
path: root/src/backend/replication/slot.c
diff options
context:
space:
mode:
authorRobert Haas2016-02-12 13:07:11 +0000
committerRobert Haas2016-02-12 13:07:11 +0000
commit63461a63f94a333eae272be3d44ae1602cda75cb (patch)
treeb76c93a66ce9731271365350ff0bec7fc838a7ac /src/backend/replication/slot.c
parentcaefc11ef6613683ddf8ded2081da3db238f463e (diff)
Make builtin lwlock tranche names consistent.
Previously, we had a mix of styles. Amit Kapila
Diffstat (limited to 'src/backend/replication/slot.c')
-rw-r--r--src/backend/replication/slot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/slot.c b/src/backend/replication/slot.c
index 11b44a483c7..a2c6524e0b5 100644
--- a/src/backend/replication/slot.c
+++ b/src/backend/replication/slot.c
@@ -138,7 +138,7 @@ ReplicationSlotsShmemInit(void)
ShmemInitStruct("ReplicationSlot Ctl", ReplicationSlotsShmemSize(),
&found);
- ReplSlotIOLWLockTranche.name = "Replication Slot IO Locks";
+ ReplSlotIOLWLockTranche.name = "replication_slot_io";
ReplSlotIOLWLockTranche.array_base =
((char *) ReplicationSlotCtl) + offsetof(ReplicationSlotCtlData, replication_slots) +offsetof(ReplicationSlot, io_in_progress_lock);
ReplSlotIOLWLockTranche.array_stride = sizeof(ReplicationSlot);