diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-08-21 11:12:44 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2019-08-21 11:12:44 -0400 |
commit | dc2a2cfaa82dc94a567794b55aaae969de618191 (patch) | |
tree | 08a6ce85275c7454c8caccd4b53d2607e9836273 | |
parent | 39c2056289e93cb1ec510d40c57afe5703273a40 (diff) | |
download | postgresql-dc2a2cfaa82dc94a567794b55aaae969de618191.tar.gz postgresql-dc2a2cfaa82dc94a567794b55aaae969de618191.zip |
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
-rw-r--r-- | src/backend/replication/logical/origin.c | 2 | ||||
-rw-r--r-- | src/include/catalog/pg_proc.dat | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/replication/logical/origin.c b/src/backend/replication/logical/origin.c index 46156ae6c6f..c9d04ae0b9f 100644 --- a/src/backend/replication/logical/origin.c +++ b/src/backend/replication/logical/origin.c @@ -1091,7 +1091,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))); } diff --git a/src/include/catalog/pg_proc.dat b/src/include/catalog/pg_proc.dat index c4fc50dceb7..658229ce777 100644 --- a/src/include/catalog/pg_proc.dat +++ b/src/include/catalog/pg_proc.dat @@ -10093,7 +10093,7 @@ prosrc => 'pg_replication_origin_xact_reset' }, { oid => '6012', - descr => 'advance replication identifier to specific location', + descr => 'advance replication origin to specific location', proname => 'pg_replication_origin_advance', provolatile => 'v', proparallel => 'u', prorettype => 'void', proargtypes => 'text pg_lsn', prosrc => 'pg_replication_origin_advance' }, |