From 945b925964407c5f7527d0d942862d83fba63fbf Mon Sep 17 00:00:00 2001
From: Kyotaro Horiguchi <horikyota.ntt@gmail.com>
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

