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 | d60ec8fe529850d10c3422086912056c5af4e61c (patch) | |
tree | e4688bddaeb88e89ad88d7616ddf7d90c4ccd44f | |
parent | 068bc300c6ed5333d9561e55cb5f45d17de88422 (diff) | |
download | postgresql-d60ec8fe529850d10c3422086912056c5af4e61c.tar.gz postgresql-d60ec8fe529850d10c3422086912056c5af4e61c.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 681132c922b..5d76b6bc846 100644 --- a/src/backend/replication/logical/origin.c +++ b/src/backend/replication/logical/origin.c @@ -1100,7 +1100,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 36ae2ac9d86..e99b346b921 100644 --- a/src/include/catalog/pg_proc.dat +++ b/src/include/catalog/pg_proc.dat @@ -10528,7 +10528,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' }, |