1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-06 19:59:18 +03:00

pg_upgrade: Add missing newline to message

This was the backport of 2e3dc8c148, but in older releases the newline
must be in the message.
This commit is contained in:
Peter Eisentraut 2023-11-03 11:50:25 -04:00
parent 58d3283b67
commit 04d2d605f3

View File

@ -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)) 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" pg_fatal("Your installation contains the \"%s\" data type in user tables.\n"
"The \"%s\" type has been removed in PostgreSQL version %s,\n" "The \"%s\" type has been removed in PostgreSQL version %s,\n"
"so this cluster cannot currently be upgraded. You can drop the\n" "so this cluster cannot currently be upgraded. You can drop the\n"