aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2017-02-25 12:59:23 -0500
committerBruce Momjian <bruce@momjian.us>2017-02-25 12:59:23 -0500
commit3c6f766f68114785195cf50700c71021942e60a9 (patch)
tree3d6869276922fa613f0b574732d422e1f5d38768
parent513c9f9de2a95f89150e8191a9a0eddc40403bf0 (diff)
downloadpostgresql-3c6f766f68114785195cf50700c71021942e60a9.tar.gz
postgresql-3c6f766f68114785195cf50700c71021942e60a9.zip
pg_upgrade docs: clarify instructions on standby extensions
Previously the pg_upgrade standby upgrade instructions said not to execute pgcrypto.sql, but it should have referenced the extension command "CREATE EXTENSION pgcrypto". This patch makes that doc change. Reported-by: a private bug report Backpatch-through: 9.4, where standby instructions were added
-rw-r--r--doc/src/sgml/ref/pgupgrade.sgml3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/pgupgrade.sgml b/doc/src/sgml/ref/pgupgrade.sgml
index df5c122cb17..5df9409e97b 100644
--- a/doc/src/sgml/ref/pgupgrade.sgml
+++ b/doc/src/sgml/ref/pgupgrade.sgml
@@ -273,7 +273,8 @@ make prefix=/usr/local/pgsql.new install
into the new cluster, e.g. <filename>pgcrypto.so</filename>,
whether they are from <filename>contrib</filename>
or some other source. Do not install the schema definitions, e.g.
- <filename>pgcrypto.sql</>, because these will be upgraded from the old cluster.
+ <command>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.
</para>