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 | fe7262f0d8cea4fd6a64bb1361da5d7e47040d86 (patch) | |
tree | 000313afb2b9f7392a5076bdb0859ed552ebadaa /src | |
parent | 516613d4a16a8e360b9e07d2fcbbdec96efb8cce (diff) |
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 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))); } |