diff options
author | Álvaro Herrera | 2025-07-04 16:31:24 +0000 |
---|---|---|
committer | Álvaro Herrera | 2025-07-04 16:31:24 +0000 |
commit | 5aba3e637d3d874f7bf00318c828249a964c4c3c (patch) | |
tree | 36497012ec3552d2ab0c8da4cb6ca2d34bbfd5b6 | |
parent | 07da2985d6bf685c4417b3738babbcac109a4a44 (diff) |
pg_upgrade: Add missing newline in error message
Minor oversight in 347758b12063
-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 ba4b9ff3b14..5eac4073fc3 100644 --- a/src/bin/pg_upgrade/check.c +++ b/src/bin/pg_upgrade/check.c @@ -420,7 +420,7 @@ process_data_type_check(DbInfo *dbinfo, PGresult *res, void *arg) if (!state->result) { pg_log(PG_REPORT, "failed check: %s", _(state->check->status)); - appendPQExpBuffer(*state->report, "\n%s\n%s %s\n", + appendPQExpBuffer(*state->report, "\n%s\n%s\n %s\n", _(state->check->report_text), _("A list of the problem columns is in the file:"), output_path); |