projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f53f83b
)
pg_upgrade: Add missing newline to message
author
Peter Eisentraut
<peter@eisentraut.org>
Fri, 3 Nov 2023 15:50:25 +0000
(11:50 -0400)
committer
Peter Eisentraut
<peter@eisentraut.org>
Fri, 3 Nov 2023 16:07:25 +0000
(12:07 -0400)
This was the backport of
2e3dc8c148
, but in older releases the newline
must be in the message.
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 5b57798fddfaa9965d10e388e4c3b15ff1c05d84..dc060418e507e06db4c4d9a331ebb64b016a1b96 100644
(file)
--- a/
src/bin/pg_upgrade/check.c
+++ b/
src/bin/pg_upgrade/check.c
@@
-1335,7
+1335,7
@@
check_for_removed_data_type_usage(ClusterInfo *cluster, const char *version,
if (check_for_data_type_usage(cluster, typename, output_path))
{
- pg_log(PG_REPORT, "fatal");
+ pg_log(PG_REPORT, "fatal
\n
");
pg_fatal("Your installation contains the \"%s\" data type in user tables.\n"
"The \"%s\" type has been removed in PostgreSQL version %s,\n"
"so this cluster cannot currently be upgraded. You can drop the\n"