Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 58f5edf

Browse files
committed
Fix typo with wait event for SLRU buffer of commit timestamps
This wait event was documented as "CommitTsBuffer" since its introduction, but the code named it "CommitTSBuffer". This commit fixes the code to follow the term documented, which is also more consistent with the naming of the other wait events used for commit timestamps. Introduced by 5da1493. Author: Alexander Lakhin Discussion: https://postgr.es/m/e8c38840-596a-83d6-bd8d-cebc51111572@gmail.com Backpatch-through: 13
1 parent 95f5a7a commit 58f5edf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/backend/storage/lmgr/lwlock.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ static const char *const BuiltinTrancheNames[] = {
135135
/* LWTRANCHE_XACT_BUFFER: */
136136
"XactBuffer",
137137
/* LWTRANCHE_COMMITTS_BUFFER: */
138-
"CommitTSBuffer",
138+
"CommitTsBuffer",
139139
/* LWTRANCHE_SUBTRANS_BUFFER: */
140140
"SubtransBuffer",
141141
/* LWTRANCHE_MULTIXACTOFFSET_BUFFER: */

0 commit comments

Comments
 (0)