From: Alexander Korotkov Date: Sat, 15 Nov 2025 10:16:54 +0000 (+0200) Subject: Fix incorrect function name in comments X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=23792d7381583d04c4bbd0a8507566401ec013d3;p=users%2Frhaas%2Fpostgres.git Fix incorrect function name in comments Update comments to reference WaitForLSN() instead of the outdated WaitForLSNReplay() function name. Discussion: https://postgr.es/m/CABPTF7UieOYbOgH3EnQCasaqcT1T4N6V2wammwrWCohQTnD_Lw%40mail.gmail.com Author: Xuneng Zhou Reviewed-by: Alexander Korotkov --- diff --git a/src/backend/commands/wait.c b/src/backend/commands/wait.c index 67068a92db..a37bddaefb 100644 --- a/src/backend/commands/wait.c +++ b/src/backend/commands/wait.c @@ -143,8 +143,7 @@ ExecWaitStmt(ParseState *pstate, WaitStmt *stmt, DestReceiver *dest) waitLSNResult = WaitForLSN(WAIT_LSN_TYPE_REPLAY, lsn, timeout); /* - * Process the result of WaitForLSNReplay(). Throw appropriate error if - * needed. + * Process the result of WaitForLSN(). Throw appropriate error if needed. */ switch (waitLSNResult) { diff --git a/src/include/access/xlogwait.h b/src/include/access/xlogwait.h index 4dc328b1b0..f43e481c3b 100644 --- a/src/include/access/xlogwait.h +++ b/src/include/access/xlogwait.h @@ -20,7 +20,7 @@ #include "tcop/dest.h" /* - * Result statuses for WaitForLSNReplay(). + * Result statuses for WaitForLSN(). */ typedef enum {