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:11 -0400
commit04d2d605f3a4d0d90f35e89c66a19c338ede0dd8 (patch)
tree8f8f3a1d7eac0a98a204c3851eb31a42156529b1
parent58d3283b675639a72faaef669371d71423be441b (diff)
downloadpostgresql-04d2d605f3a4d0d90f35e89c66a19c338ede0dd8.tar.gz
postgresql-04d2d605f3a4d0d90f35e89c66a19c338ede0dd8.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 374244d814a..2f3a6730322 100644
--- a/src/bin/pg_upgrade/check.c
+++ b/src/bin/pg_upgrade/check.c
@@ -1370,7 +1370,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"