summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Bossart <nathan@postgresql.org>2024-09-25 11:18:56 -0500
committerNathan Bossart <nathan@postgresql.org>2024-09-25 11:18:56 -0500
commit4e0864af16b5ada4b251fe2dee1060bae81628bf (patch)
tree56305e7b5d7d1f647a7c4022d8c921a080286c71
parent85cb21df673f3a0545b21eadcced7cb038c9fe9c (diff)
Remove extra whitespace in pg_upgrade status message.
There's no need to add another level of indentation to this status message. pg_log() will put it in the right place. Oversight in commit 347758b120. Reviewed-by: Daniel Gustafsson Discussion: https://postgr.es/m/ZunW7XHLd2uTts4f%40nathan Backpatch-through: 17
-rw-r--r--src/bin/pg_upgrade/check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_upgrade/check.c b/src/bin/pg_upgrade/check.c
index 37d2394c11f..1cf84cc1bb5 100644
--- a/src/bin/pg_upgrade/check.c
+++ b/src/bin/pg_upgrade/check.c
@@ -477,7 +477,7 @@ check_for_data_types_usage(ClusterInfo *cluster, DataTypesUsageChecks *checks)
*/
if (!results[checknum])
{
- pg_log(PG_REPORT, " failed check: %s", _(cur_check->status));
+ pg_log(PG_REPORT, "failed check: %s", _(cur_check->status));
appendPQExpBuffer(&report, "\n%s\n%s %s\n",
_(cur_check->report_text),
_("A list of the problem columns is in the file:"),