From: Alvaro Herrera Date: Wed, 21 Aug 2019 15:12:44 +0000 (-0400) Subject: Fix typo X-Git-Tag: REL9_6_16~96 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fe7262f0d8cea4fd6a64bb1361da5d7e47040d86;p=thirdparty%2Fpostgresql.git Fix typo In early development patches, "replication origins" were called "identifiers"; almost everything was renamed, but these references to the old terminology went unnoticed. Reported-by: Craig Ringer --- diff --git a/src/backend/replication/logical/origin.c b/src/backend/replication/logical/origin.c index 7b1385968ca..16634bf225d 100644 --- a/src/backend/replication/logical/origin.c +++ b/src/backend/replication/logical/origin.c @@ -1055,7 +1055,7 @@ replorigin_session_setup(RepOriginId node) { ereport(ERROR, (errcode(ERRCODE_OBJECT_IN_USE), - errmsg("replication identifier %d is already active for PID %d", + errmsg("replication origin %d is already active for PID %d", curstate->roident, curstate->acquired_by))); }