From 1509c6fc29c07d13c9a590fbd6f37c7576f58ba6 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 24 Mar 2021 08:02:06 +0100 Subject: [PATCH] Improve an error message Make it the same as another nearby message. --- src/backend/replication/logical/tablesync.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/replication/logical/tablesync.c b/src/backend/replication/logical/tablesync.c index 6ed31812ab..8494db8f05 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. */ -- 2.39.5