From ead4ae00b8c8219498452204a0de6b091ccc1d8a Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 3 Aug 2021 11:27:32 -0400 Subject: [PATCH] pg_upgrade: improve docs about extension upgrades The previous wording was unclear about the steps needed to upgrade extensions, and how to update them after pg_upgrade. Reported-by: Dave Cramer Discussion: https://postgr.es/m/CADK3HHKawwbOcGwMGnDuAf3-U8YfvTcS8jqDv3UM=niijs3MMA@mail.gmail.com Backpatch-through: 9.6 --- doc/src/sgml/ref/pgupgrade.sgml | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/doc/src/sgml/ref/pgupgrade.sgml b/doc/src/sgml/ref/pgupgrade.sgml index 361374274d..2c65d48cd2 100644 --- a/doc/src/sgml/ref/pgupgrade.sgml +++ b/doc/src/sgml/ref/pgupgrade.sgml @@ -298,17 +298,27 @@ make prefix=/usr/local/pgsql.new install - Install custom shared object files + Install extension shared object files - Install any custom shared object files (or DLLs) used by the old cluster - into the new cluster, e.g., pgcrypto.so, - whether they are from contrib - or some other source. Do not install the schema definitions, e.g., - CREATE EXTENSION pgcrypto, because these will be upgraded - from the old cluster. - Also, any custom full text search files (dictionary, synonym, - thesaurus, stop words) must also be copied to the new cluster. + Many extensions and custom modules, whether from + contrib or another source, use shared object + files (or DLLs), e.g., pgcrypto.so. If the old + cluster used these, shared object files matching the new server binary + must be installed in the new cluster, usually via operating system + commands. Do not load the schema definitions, e.g., CREATE + EXTENSION pgcrypto, because these will be duplicated from + the old cluster. (Extensions with available updates can be processed + later using ALTER EXTENSION ... UPDATE.) + + + + + Copy custom full-text search files + + + Copy any custom full text search files (dictionary, synonym, + thesaurus, stop words) from the old to the new cluster. @@ -493,10 +503,10 @@ pg_upgrade.exe - Install custom shared object files + Install extension shared object files - Install the same custom shared object files on the new standbys + Install the same extension shared object files on the new standbys that you installed in the new primary cluster.