projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b0c8e3
)
pg_upgrade: Improve message indentation
author
Peter Eisentraut
<peter@eisentraut.org>
Thu, 7 Aug 2025 09:48:43 +0000
(11:48 +0200)
committer
Peter Eisentraut
<peter@eisentraut.org>
Thu, 7 Aug 2025 09:59:38 +0000
(11:59 +0200)
Fix commit
f295494d338
to use consistent four-space indentation for
verbose messages.
src/bin/pg_upgrade/check.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_upgrade/check.c
b/src/bin/pg_upgrade/check.c
index a06db5c2adc4fe72aea720ae1e2587809e6e8fda..32925fef1907e8cbe71a02eeb7a0c1054f8aed0a 100644
(file)
--- a/
src/bin/pg_upgrade/check.c
+++ b/
src/bin/pg_upgrade/check.c
@@
-1280,7
+1280,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);
}