Skip to content

Commit f0b57ae

Browse files
committed
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/[email protected] Reviewed-by: Daniel Gustafsson <[email protected]> Backpatch-through: 13
1 parent f6f5982 commit f0b57ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bin/pg_upgrade/check.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -887,9 +887,9 @@ check_for_isn_and_int8_passing_mismatch(ClusterInfo *cluster)
887887
pg_fatal("Your installation contains \"contrib/isn\" functions which rely on the\n"
888888
"bigint data type. Your old and new clusters pass bigint values\n"
889889
"differently so this cluster cannot currently be upgraded. You can\n"
890-
"manually upgrade databases that use \"contrib/isn\" facilities and remove\n"
891-
"\"contrib/isn\" from the old cluster and restart the upgrade. A list of\n"
892-
"the problem functions is in the file:\n"
890+
"manually dump databases in the old cluster that use \"contrib/isn\"\n"
891+
"facilities, drop them, perform the upgrade, and then restore them. A\n"
892+
"list of the problem functions is in the file:\n"
893893
" %s\n\n", output_path);
894894
}
895895
else

0 commit comments

Comments
 (0)