diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-05-07 13:13:27 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-05-07 13:13:47 -0400 |
commit | d289dcfc393c5329fb67a1df27957a9923365ce6 (patch) | |
tree | bed60e3eb7fe50cb6c7ad7c2659764f727766d69 | |
parent | dc441d5c2da745fe79b2b1ea27d06e7aeae8c941 (diff) | |
download | postgresql-d289dcfc393c5329fb67a1df27957a9923365ce6.tar.gz postgresql-d289dcfc393c5329fb67a1df27957a9923365ce6.zip |
Last-minute updates for release notes.
The set of functions that need parallel-safety adjustments isn't the
same in 9.6 as 10, so I shouldn't have blindly back-patched that list.
Adjust as needed. Also, provide examples of the commands to issue.
-rw-r--r-- | doc/src/sgml/release-9.3.sgml | 10 | ||||
-rw-r--r-- | doc/src/sgml/release-9.4.sgml | 10 |
2 files changed, 12 insertions, 8 deletions
diff --git a/doc/src/sgml/release-9.3.sgml b/doc/src/sgml/release-9.3.sgml index 2bab3894448..054ef1c37f1 100644 --- a/doc/src/sgml/release-9.3.sgml +++ b/doc/src/sgml/release-9.3.sgml @@ -59,10 +59,12 @@ installations will continue to contain the incorrect markings. Practical use of these functions seems to pose little hazard, but in case of trouble, it can be fixed by manually updating these - functions' <structname>pg_proc</structname> entries. (Note that that - will need to be done in each database of the installation.) Another - option is to <application>pg_upgrade</application> the database to a - version containing the corrected initial data. + functions' <structname>pg_proc</structname> entries, for example + <literal>ALTER FUNCTION pg_catalog.query_to_xml(text, boolean, + boolean, text) VOLATILE</literal>. (Note that that will need to be + done in each database of the installation.) Another option is + to <application>pg_upgrade</application> the database to a version + containing the corrected initial data. </para> </listitem> diff --git a/doc/src/sgml/release-9.4.sgml b/doc/src/sgml/release-9.4.sgml index 67d3f2e3a37..d368990a841 100644 --- a/doc/src/sgml/release-9.4.sgml +++ b/doc/src/sgml/release-9.4.sgml @@ -59,10 +59,12 @@ installations will continue to contain the incorrect markings. Practical use of these functions seems to pose little hazard, but in case of trouble, it can be fixed by manually updating these - functions' <structname>pg_proc</structname> entries. (Note that that - will need to be done in each database of the installation.) Another - option is to <application>pg_upgrade</application> the database to a - version containing the corrected initial data. + functions' <structname>pg_proc</structname> entries, for example + <literal>ALTER FUNCTION pg_catalog.query_to_xml(text, boolean, + boolean, text) VOLATILE</literal>. (Note that that will need to be + done in each database of the installation.) Another option is + to <application>pg_upgrade</application> the database to a version + containing the corrected initial data. </para> </listitem> |