1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-24 09:27:52 +03:00

pg_upgrade: Improve message indentation

Fix commit f295494d33 to use consistent four-space indentation for
verbose messages.
This commit is contained in:
Peter Eisentraut
2025-08-07 11:48:43 +02:00
parent 747e869af6
commit 1601310335

View File

@@ -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" "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" "also be marked NOT NULL, or the upgrade will fail.\n"
"You can fix this by running\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" "on each column listed in the file:\n"
" %s\n\n", output_path); " %s\n\n", output_path);
} }