1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-14 08:21:07 +03:00
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
This commit is contained in:
Alvaro Herrera
2019-08-21 11:12:44 -04:00
parent 516613d4a1
commit fe7262f0d8

View File

@ -1055,7 +1055,7 @@ replorigin_session_setup(RepOriginId node)
{ {
ereport(ERROR, ereport(ERROR,
(errcode(ERRCODE_OBJECT_IN_USE), (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))); curstate->roident, curstate->acquired_by)));
} }