aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2019-11-27 20:24:57 -0500
committerBruce Momjian <bruce@momjian.us>2019-11-27 20:24:57 -0500
commitf0b57aec1d41f89611efac4d6938a725b056ed00 (patch)
treea95231defc78c94ac3f8b20d7978f1d9a6e08f0d /src
parentf6f59826f01188aa9603983d00b0cd3496e9359d (diff)
downloadpostgresql-f0b57aec1d41f89611efac4d6938a725b056ed00.tar.gz
postgresql-f0b57aec1d41f89611efac4d6938a725b056ed00.zip
pg_upgrade: improve instructions for fixing incompatible isn use
This clarifies instructions on how to dump/reload databases that use incompatible isn versions. Reported-by: Alvaro Herrera Discussion: https://postgr.es/m/20191114190652.GA23586@alvherre.pgsql Reviewed-by: Daniel Gustafsson <daniel@yesql.se> Backpatch-through: 13
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_upgrade/check.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_upgrade/check.c b/src/bin/pg_upgrade/check.c
index ff7057db738..b300acb7a3d 100644
--- a/src/bin/pg_upgrade/check.c
+++ b/src/bin/pg_upgrade/check.c
@@ -887,9 +887,9 @@ check_for_isn_and_int8_passing_mismatch(ClusterInfo *cluster)
pg_fatal("Your installation contains \"contrib/isn\" functions which rely on the\n"
"bigint data type. Your old and new clusters pass bigint values\n"
"differently so this cluster cannot currently be upgraded. You can\n"
- "manually upgrade databases that use \"contrib/isn\" facilities and remove\n"
- "\"contrib/isn\" from the old cluster and restart the upgrade. A list of\n"
- "the problem functions is in the file:\n"
+ "manually dump databases in the old cluster that use \"contrib/isn\"\n"
+ "facilities, drop them, perform the upgrade, and then restore them. A\n"
+ "list of the problem functions is in the file:\n"
" %s\n\n", output_path);
}
else