diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-09-06 12:36:40 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-09-06 12:36:40 -0400 |
commit | ae92eff6b93c6ee18ca5c48958c355f5a448f8f5 (patch) | |
tree | 1ca6a72f1379535d0b6cfc8dc0cd21d091c37e1b | |
parent | b7f83e70d9758c5dd480c9dbba1668ddeec37916 (diff) | |
download | postgresql-ae92eff6b93c6ee18ca5c48958c355f5a448f8f5.tar.gz postgresql-ae92eff6b93c6ee18ca5c48958c355f5a448f8f5.zip |
Add an "incompatibility" entry to 9.1 release notes about CREATE EXTENSION.
We've now seen more than one gripe from somebody who didn't get the memo
about how to install contrib modules in 9.1. Try to make it a little more
prominent that you aren't supposed to call the scripts directly anymore.
-rw-r--r-- | doc/src/sgml/release-9.1.sgml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/doc/src/sgml/release-9.1.sgml b/doc/src/sgml/release-9.1.sgml index 9a6ee0a50e5..a506329aeff 100644 --- a/doc/src/sgml/release-9.1.sgml +++ b/doc/src/sgml/release-9.1.sgml @@ -368,6 +368,24 @@ </sect3> <sect3> + <title>Contrib</title> + + <itemizedlist> + + <listitem> + <para> + All contrib modules are now installed with <link + linkend="SQL-CREATEEXTENSION"><command>CREATE EXTENSION</></link> + rather than by manually invoking their SQL scripts + (Dimitri Fontaine, Tom Lane) + </para> + </listitem> + + </itemizedlist> + + </sect3> + + <sect3> <title>Other Incompatibilities</title> <itemizedlist> |