diff options
author | Álvaro Herrera | 2025-07-04 16:31:35 +0000 |
---|---|---|
committer | Álvaro Herrera | 2025-07-04 16:31:35 +0000 |
commit | 90a85fce5e9b9ea63ec7e1b3001e0f39d4c8b7d4 (patch) | |
tree | 65f9c1908f71441391f4015d00d53a7b47418089 /src | |
parent | f295494d338c452617f966d4d1f13a726cd72661 (diff) |
pg_upgrade: Add missing newline in error message
Minor oversight in 347758b12063
Diffstat (limited to 'src')
-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 2106869b999..a756ddbd254 100644 --- a/src/bin/pg_upgrade/check.c +++ b/src/bin/pg_upgrade/check.c @@ -421,7 +421,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); |