aboutsummaryrefslogtreecommitdiff
path: root/src/backend/replication/logical/tablesync.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2021-03-24 08:02:06 +0100
committerPeter Eisentraut <peter@eisentraut.org>2021-03-24 08:02:06 +0100
commit1509c6fc29c07d13c9a590fbd6f37c7576f58ba6 (patch)
tree7891e63a6f1bdfef81da9ba0d51d99b7b7768359 /src/backend/replication/logical/tablesync.c
parent26acb54a1368bf3706294400abca85b15c9233a6 (diff)
downloadpostgresql-1509c6fc29c07d13c9a590fbd6f37c7576f58ba6.tar.gz
postgresql-1509c6fc29c07d13c9a590fbd6f37c7576f58ba6.zip
Improve an error message
Make it the same as another nearby message.
Diffstat (limited to 'src/backend/replication/logical/tablesync.c')
-rw-r--r--src/backend/replication/logical/tablesync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/replication/logical/tablesync.c b/src/backend/replication/logical/tablesync.c
index 6ed31812abc..8494db8f053 100644
--- a/src/backend/replication/logical/tablesync.c
+++ b/src/backend/replication/logical/tablesync.c
@@ -758,7 +758,7 @@ fetch_remote_table_info(char *nspname, char *relname,
if (res->status != WALRCV_OK_TUPLES)
ereport(ERROR,
- (errmsg("could not fetch table info for table \"%s.%s\": %s",
+ (errmsg("could not fetch table info for table \"%s.%s\" from publisher: %s",
nspname, relname, res->err)));
/* We don't know the number of rows coming, so allocate enough space. */