diff options
| author | Robert Haas | 2016-02-12 13:07:11 +0000 |
|---|---|---|
| committer | Robert Haas | 2016-02-12 13:07:11 +0000 |
| commit | 63461a63f94a333eae272be3d44ae1602cda75cb (patch) | |
| tree | b76c93a66ce9731271365350ff0bec7fc838a7ac /src/backend/replication/slot.c | |
| parent | caefc11ef6613683ddf8ded2081da3db238f463e (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.c | 2 |
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); |
