1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Fix gratuitous error message variation

This commit is contained in:
Peter Eisentraut
2019-11-08 18:12:51 +01:00
parent 0c7a28a5ea
commit 4cc66a2a4a

View File

@ -1092,7 +1092,7 @@ replorigin_session_setup(RepOriginId node)
{ {
ereport(ERROR, ereport(ERROR,
(errcode(ERRCODE_OBJECT_IN_USE), (errcode(ERRCODE_OBJECT_IN_USE),
errmsg("replication origin %d is already active for PID %d", errmsg("replication origin with OID %d is already active for PID %d",
curstate->roident, curstate->acquired_by))); curstate->roident, curstate->acquired_by)));
} }