diff options
author | Bruce Momjian <bruce@momjian.us> | 2021-08-08 21:05:46 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2021-08-08 21:05:46 -0400 |
commit | cfb70a120bbac4b197aabc663e1400c3cb599ffe (patch) | |
tree | f263d2b87395beecbdeed9e96e6ff61f25642c0d | |
parent | bf0a6ec33106955348928411eaf767aa0055d060 (diff) | |
download | postgresql-cfb70a120bbac4b197aabc663e1400c3cb599ffe.tar.gz postgresql-cfb70a120bbac4b197aabc663e1400c3cb599ffe.zip |
doc: mention pg_upgrade extension script
Since commit e462856a7a, pg_upgrade automatically creates a script to
update extensions, so mention that instead of ALTER EXTENSION.
Backpatch-through: 9.6
-rw-r--r-- | doc/src/sgml/ref/pgupgrade.sgml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/pgupgrade.sgml b/doc/src/sgml/ref/pgupgrade.sgml index da4da5ee01a..86239922cc0 100644 --- a/doc/src/sgml/ref/pgupgrade.sgml +++ b/doc/src/sgml/ref/pgupgrade.sgml @@ -279,8 +279,9 @@ make prefix=/usr/local/pgsql.new install must be installed in the new cluster, usually via operating system commands. Do not load the schema definitions, e.g., <command>CREATE EXTENSION pgcrypto</command>, because these will be duplicated from - the old cluster. (Extensions with available updates can be processed - later using <literal>ALTER EXTENSION ... UPDATE</literal>.) + the old cluster. If extension updates are available, + <application>pg_upgrade</application> will report this and create + a script that can be run later to update them. </para> </step> |