pg_upgrade: Add missing newline in error message

Minor oversight in 347758b120
This commit is contained in:
Álvaro Herrera 2025-07-04 16:07:11 +02:00
parent b8b2e60527
commit 0807a4656e
No known key found for this signature in database
GPG key ID: 1C20ACB9D5C564AE

View file

@ -479,7 +479,7 @@ check_for_data_types_usage(ClusterInfo *cluster, DataTypesUsageChecks *checks)
if (!results[checknum])
{
pg_log(PG_REPORT, "failed check: %s", _(cur_check->status));
appendPQExpBuffer(&report, "\n%s\n%s %s\n",
appendPQExpBuffer(&report, "\n%s\n%s\n %s\n",
_(cur_check->report_text),
_("A list of the problem columns is in the file:"),
output_path);