diff options
| author | Nathan Bossart | 2024-09-25 16:18:56 +0000 |
|---|---|---|
| committer | Nathan Bossart | 2024-09-25 16:18:56 +0000 |
| commit | 2ceeb638b7b27da156c10cb9d5ea4f81cabda0d1 (patch) | |
| tree | 899505317b18cc278a18b72296092b559a07973e /src | |
| parent | dce507356a4ab7d548dca9d7abf1800a0fc0a18e (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
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 1c277ce17bb..c9a3f06b80b 100644 --- a/src/bin/pg_upgrade/check.c +++ b/src/bin/pg_upgrade/check.c @@ -419,7 +419,7 @@ process_data_type_check(DbInfo *dbinfo, PGresult *res, void *arg) */ if (!(*state->result)) { - pg_log(PG_REPORT, " failed check: %s", _(state->check->status)); + pg_log(PG_REPORT, "failed check: %s", _(state->check->status)); appendPQExpBuffer(*state->report, "\n%s\n%s %s\n", _(state->check->report_text), _("A list of the problem columns is in the file:"), |
