diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2023-11-03 11:50:25 -0400 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2023-11-03 12:07:35 -0400 |
commit | 2f1f49975f93edb59bebe2dcebecaa7e331e9d04 (patch) | |
tree | 15463bba27ca27ed879f2e6a5626fbd37724fb28 | |
parent | 111364ec20e1acc497b6925ab8d09fa753892c0b (diff) | |
download | postgresql-2f1f49975f93edb59bebe2dcebecaa7e331e9d04.tar.gz postgresql-2f1f49975f93edb59bebe2dcebecaa7e331e9d04.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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/check.c b/src/bin/pg_upgrade/check.c index c14a112ef92..035786747db 100644 --- a/src/bin/pg_upgrade/check.c +++ b/src/bin/pg_upgrade/check.c @@ -1155,7 +1155,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" |