aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2019-11-08 18:12:51 +0100
committerPeter Eisentraut <peter@eisentraut.org>2019-11-08 18:38:07 +0100
commit64b62b7b9b8566a0b92986ce26de84101820b556 (patch)
treece42fb1d17eba336e1d2cb3d6729785906bb1a4a /src
parentb260ce9c19b64e0430d89f8cc586fc8f6df5ee07 (diff)
downloadpostgresql-64b62b7b9b8566a0b92986ce26de84101820b556.tar.gz
postgresql-64b62b7b9b8566a0b92986ce26de84101820b556.zip
Fix gratuitous error message variation
Diffstat (limited to 'src')
-rw-r--r--src/backend/replication/logical/origin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/origin.c b/src/backend/replication/logical/origin.c
index 1f2c71b6e98..16e62e269dd 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 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)));
}