summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2025-08-07 11:48:43 +0200
committerPeter Eisentraut <peter@eisentraut.org>2025-08-07 11:59:32 +0200
commit63c79a6fc23f0cd1220524fe120e7942b90f53bf (patch)
tree7c4864664587ee58c42f2a365789a25d2bd28c4f
parent835c9374d630dad82a50052388df8333a8c5bc94 (diff)
pg_upgrade: Improve message indentation
Fix commit f295494d338 to use consistent four-space indentation for verbose messages.
-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 7e8365d89fa..321328d9ab9 100644
--- a/src/bin/pg_upgrade/check.c
+++ b/src/bin/pg_upgrade/check.c
@@ -1307,7 +1307,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);
}