From: Alvaro Herrera Date: Wed, 21 Aug 2019 15:12:44 +0000 (-0400) Subject: Fix typo X-Git-Tag: REL9_5_20~84 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aad9bf336c5e3669667378bc6eea1f9ec5a0d805;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 94832a105bf..1f2c71b6e98 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))); }