From: Peter Eisentraut Date: Thu, 7 Aug 2025 09:48:43 +0000 (+0200) Subject: pg_upgrade: Improve message indentation X-Git-Tag: REL_16_10~17 X-Git-Url: http://waps.l3s.uni-hannover.de/gitweb/?a=commitdiff_plain;h=05b367bea4e36a3b747b7aaf6f3ffe72bb6b825e;p=postgresql.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 0aee919c44a..73f361a1b4b 100644 --- a/src/bin/pg_upgrade/check.c +++ b/src/bin/pg_upgrade/check.c @@ -1177,7 +1177,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", output_path); }