[PATCH 3/4] Quote file names in existing DEBUG2 messages
Kyotaro Horiguchi <horikyota.ntt@gmail.com>
From: Kyotaro Horiguchi <horikyota.ntt@gmail.com>
To:
Date: 2025-04-04T02:42:23Z
Lists: pgsql-hackers
Add missing quotes around file names in existing DEBUG2 messages in xlog.c. --- src/backend/access/transam/xlog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index ec40c0b7c42..083d1a17272 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -4021,7 +4021,7 @@ RemoveOldXlogFiles(XLogSegNo segno, XLogRecPtr lastredoptr, XLogRecPtr endptr, */ XLogFileName(lastoff, 0, segno, wal_segment_size); - elog(DEBUG2, "attempting to remove WAL segments older than log file %s", + elog(DEBUG2, "attempting to remove WAL segments older than log file \"%s\"", lastoff); xldir = AllocateDir(XLOGDIR); @@ -4098,7 +4098,7 @@ RemoveNonParentXlogFiles(XLogRecPtr switchpoint, TimeLineID newTLI) */ XLogFileName(switchseg, newTLI, switchLogSegNo, wal_segment_size); - elog(DEBUG2, "attempting to remove WAL segments newer than log file %s", + elog(DEBUG2, "attempting to remove WAL segments newer than log file \"%s\"", switchseg); xldir = AllocateDir(XLOGDIR); -- 2.43.5 ----Next_Part(Fri_Apr__4_12_03_28_2025_546)-- Content-Type: Text/X-Patch; charset=iso-2022-jp Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0004-Quote-file-names-in-developer-tool-messages.patch"