From: Kyotaro Horiguchi Date: Thu, 5 Feb 2026 16:55:21 +0900 Subject: [PATCH 5/6] Unify wording of timeout error messages Align the wording of timeout-related error messages by using "timeout value" consistently. --- src/backend/commands/wait.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/commands/wait.c b/src/backend/commands/wait.c index 1290df10c6f..5218ce4c7fe 100644 --- a/src/backend/commands/wait.c +++ b/src/backend/commands/wait.c @@ -111,7 +111,7 @@ ExecWaitStmt(ParseState *pstate, WaitStmt *stmt, DestReceiver *dest) if (result < 0) ereport(ERROR, errcode(ERRCODE_INVALID_PARAMETER_VALUE), - errmsg("timeout cannot be negative")); + errmsg("timeout value cannot be negative")); timeout = (int64) result; } -- 2.47.3 ----Next_Part(Tue_Feb_10_14_37_52_2026_180)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0006-Fix-double-quoting-in-extended-statistics-error-mess.patch"