]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
pg_upgrade: Add missing newline in error message
authorÁlvaro Herrera <alvherre@kurilemu.de>
Fri, 4 Jul 2025 16:31:24 +0000 (18:31 +0200)
committerÁlvaro Herrera <alvherre@kurilemu.de>
Fri, 4 Jul 2025 16:31:24 +0000 (18:31 +0200)
Minor oversight in 347758b12063

src/bin/pg_upgrade/check.c

index ba4b9ff3b148cd17e7bda70105ae43251b24153c..5eac4073fc3ff1e269947ddc0ce3f7b0c1c2864c 100644 (file)
@@ -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);