Skip to content

Commit d3246a2

Browse files
committed
pg_upgrade: Add missing newline to message
This was the backport of 2e3dc8c, but in older releases the newline must be in the message.
1 parent 1f7d7f1 commit d3246a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_upgrade/check.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,7 @@ check_for_removed_data_type_usage(ClusterInfo *cluster, const char *version,
11561156

11571157
if (check_for_data_type_usage(cluster, typename, output_path))
11581158
{
1159-
pg_log(PG_REPORT, "fatal");
1159+
pg_log(PG_REPORT, "fatal\n");
11601160
pg_fatal("Your installation contains the \"%s\" data type in user tables.\n"
11611161
"The \"%s\" type has been removed in PostgreSQL version %s,\n"
11621162
"so this cluster cannot currently be upgraded. You can drop the\n"

0 commit comments

Comments
 (0)