aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2023-11-03 11:50:25 -0400
committerPeter Eisentraut <peter@eisentraut.org>2023-11-03 12:07:25 -0400
commitf9280e77ecf4eaa17999f6c656b9008ced4cfa19 (patch)
tree689c35465a1cf2163efaec7169bf564476ad360f
parentf53f83b33e4203ec181c93b7fa5a2e9c70e73c31 (diff)
downloadpostgresql-f9280e77ecf4eaa17999f6c656b9008ced4cfa19.tar.gz
postgresql-f9280e77ecf4eaa17999f6c656b9008ced4cfa19.zip
pg_upgrade: Add missing newline to message
This was the backport of 2e3dc8c148, but in older releases the newline must be in the message.
-rw-r--r--src/bin/pg_upgrade/check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/check.c b/src/bin/pg_upgrade/check.c
index 5b57798fddf..dc060418e50 100644
--- a/src/bin/pg_upgrade/check.c
+++ b/src/bin/pg_upgrade/check.c
@@ -1335,7 +1335,7 @@ check_for_removed_data_type_usage(ClusterInfo *cluster, const char *version,
if (check_for_data_type_usage(cluster, typename, output_path))
{
- pg_log(PG_REPORT, "fatal");
+ pg_log(PG_REPORT, "fatal\n");
pg_fatal("Your installation contains the \"%s\" data type in user tables.\n"
"The \"%s\" type has been removed in PostgreSQL version %s,\n"
"so this cluster cannot currently be upgraded. You can drop the\n"