Skip to content

Commit 7406a7d

Browse files
committed
pg_upgrade: Add missing newline in output
This came from the backport of commit f295494, but older branches require the explicit newline in messages (see commit 7652353).
1 parent f9b09fe commit 7406a7d

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
@@ -1095,7 +1095,7 @@ check_for_not_null_inheritance(ClusterInfo *cluster)
10951095
if (script)
10961096
{
10971097
fclose(script);
1098-
pg_log(PG_REPORT, "fatal");
1098+
pg_log(PG_REPORT, "fatal\n");
10991099
pg_fatal("Your installation contains inconsistent NOT NULL constraints.\n"
11001100
"If the parent column(s) are NOT NULL, then the child column must\n"
11011101
"also be marked NOT NULL, or the upgrade will fail.\n"

0 commit comments

Comments
 (0)