diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-02-12 08:07:11 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-02-12 08:07:11 -0500 |
commit | 63461a63f94a333eae272be3d44ae1602cda75cb (patch) | |
tree | b76c93a66ce9731271365350ff0bec7fc838a7ac /src/backend/access/transam/xlog.c | |
parent | caefc11ef6613683ddf8ded2081da3db238f463e (diff) | |
download | postgresql-63461a63f94a333eae272be3d44ae1602cda75cb.tar.gz postgresql-63461a63f94a333eae272be3d44ae1602cda75cb.zip |
Make builtin lwlock tranche names consistent.
Previously, we had a mix of styles.
Amit Kapila
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 07a7679479c..e98c89f7aa5 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -4675,7 +4675,7 @@ XLOGShmemInit(void) (WALInsertLockPadded *) allocptr; allocptr += sizeof(WALInsertLockPadded) * NUM_XLOGINSERT_LOCKS; - XLogCtl->Insert.WALInsertLockTranche.name = "WALInsertLocks"; + XLogCtl->Insert.WALInsertLockTranche.name = "wal_insert"; XLogCtl->Insert.WALInsertLockTranche.array_base = WALInsertLocks; XLogCtl->Insert.WALInsertLockTranche.array_stride = sizeof(WALInsertLockPadded); |