From: Peter Eisentraut Date: Thu, 7 Aug 2025 09:48:43 +0000 (+0200) Subject: pg_upgrade: Improve message indentation X-Git-Tag: REL_18_BETA3~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1084e76f3ce54b238f765b7ae228fe4b1dc43bf9;p=thirdparty%2Fpostgresql.git pg_upgrade: Improve message indentation Fix commit f295494d338 to use consistent four-space indentation for verbose messages. --- diff --git a/src/bin/pg_upgrade/check.c b/src/bin/pg_upgrade/check.c index bb6d588a2ec..93ef3c42c4c 100644 --- a/src/bin/pg_upgrade/check.c +++ b/src/bin/pg_upgrade/check.c @@ -1712,7 +1712,7 @@ check_for_not_null_inheritance(ClusterInfo *cluster) "If the parent column(s) are NOT NULL, then the child column must\n" "also be marked NOT NULL, or the upgrade will fail.\n" "You can fix this by running\n" - " ALTER TABLE tablename ALTER column SET NOT NULL;\n" + " ALTER TABLE tablename ALTER column SET NOT NULL;\n" "on each column listed in the file:\n" " %s", report.path); }