A typo in a messsage? - Mailing list pgsql-hackers

From Kyotaro Horiguchi
Subject A typo in a messsage?
Date
Msg-id 20231222.154939.1509525390095583358.horikyota.ntt@gmail.com
Whole thread Raw
Responses Re: A typo in a messsage?
Re: A typo in a messsage?
List pgsql-hackers
I found the following message introduced by a recent commit.

> errdetail("The first unsummarized LSN is this range is %X/%X.",
     
Shouldn't the "is" following "LSN" be "in"?


diff --git a/src/backend/backup/basebackup_incremental.c b/src/backend/backup/basebackup_incremental.c
index 42bbe564e2..22b861ce52 100644
--- a/src/backend/backup/basebackup_incremental.c
+++ b/src/backend/backup/basebackup_incremental.c
@@ -575,7 +575,7 @@ PrepareForIncrementalBackup(IncrementalBackupInfo *ib,
                                 tle->tli,
                                 LSN_FORMAT_ARGS(tli_start_lsn),
                                 LSN_FORMAT_ARGS(tli_end_lsn)),
-                         errdetail("The first unsummarized LSN is this range is %X/%X.",
+                         errdetail("The first unsummarized LSN in this range is %X/%X.",
                                    LSN_FORMAT_ARGS(tli_missing_lsn))));
         }
 

regards.

-- 
Kyotaro Horiguchi
NTT Open Source Software Center



pgsql-hackers by date:

Previous
From: Japin Li
Date:
Subject: Re: Transaction timeout
Next
From: Andrei Lepikhov
Date:
Subject: Optimization outcome depends on the index order