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 | aad9bf336c5e3669667378bc6eea1f9ec5a0d805 (patch) | |
tree | 084b151f97e6645367800a3054be4e29fa583fc7 /src | |
parent | 5a32fcdd7cac6668bbe2834c8af29a6103f8467b (diff) | |
download | postgresql-aad9bf336c5e3669667378bc6eea1f9ec5a0d805.tar.gz postgresql-aad9bf336c5e3669667378bc6eea1f9ec5a0d805.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
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/replication/logical/origin.c | 2 |
1 files changed, 1 insertions, 1 deletions
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))); } |