diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2025-08-07 11:48:43 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2025-08-07 11:59:42 +0200 |
commit | 16013103356348f3315ec30e2a1e2312ee41095f (patch) | |
tree | ea4d4092974ddc8bb1ea4b5747d3cc638fe0bb08 /src | |
parent | 747e869af6137b5176cca2e06566680870040f68 (diff) |
pg_upgrade: Improve message indentation
Fix commit f295494d338 to use consistent four-space indentation for
verbose messages.
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 3fc96ec9005..48e87c50419 100644 --- a/src/bin/pg_upgrade/check.c +++ b/src/bin/pg_upgrade/check.c @@ -1100,7 +1100,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\n\n", output_path); } |