From a0d932b39da7d7445dfc8da1e9979dd5cf4ea0a1 Mon Sep 17 00:00:00 2001 From: Bruce Momjian <bruce@momjian.us> Date: Mon, 24 Apr 2017 21:53:37 -0400 Subject: [PATCH] doc: fix attribution of sequence item, order incompatibilities Reported-by: Andreas Karlsson --- doc/src/sgml/release-10.sgml | 150 +++++++++++++++++------------------ 1 file changed, 75 insertions(+), 75 deletions(-) diff --git a/doc/src/sgml/release-10.sgml b/doc/src/sgml/release-10.sgml index cbb432fa00c..7b521e7ef7f 100644 --- a/doc/src/sgml/release-10.sgml +++ b/doc/src/sgml/release-10.sgml @@ -83,6 +83,44 @@ Karlsson) </para> </listitem> +<listitem> +<!--<listitem> +Author: Robert Haas <rhaas@postgresql.org> +2016-10-20 [f82ec32ac] Rename "pg_xlog" directory to "pg_wal" +--> +<para> +Rename <filename>pg_xlog</> to <link linkend="wal"><filename>pg_wal</></> (Michael Paquier) +</para> + +<para> +This prevents the write-ahead log directory from being confused as +containing server activity logs, and erroneously truncated. +</para> +</listitem> + +<listitem> +<!-- +Author: Robert Haas <rhaas@postgresql.org> +2017-02-09 [806091c96] Remove all references to "xlog" from SQL-callable functi +Author: Robert Haas <rhaas@postgresql.org> +2017-02-09 [85c11324c] Rename user-facing tools with "xlog" in the name to say +Author: Robert Haas <rhaas@postgresql.org> +2017-02-09 [62e8b3875] Rename command line options for ongoing xlog -> wal conv +Author: Fujii Masao <fujii@postgresql.org> +2017-02-15 [0dfa89ba2] Replace reference to "xlog-method" with "wal-method" in +--> +<para> +Rename <acronym>SQL</> functions, tools, and options that reference <quote>xlog</> to <quote>wal</> +(Robert Haas) +</para> + +<para> +For example, <function>pg_switch_xlog()</> becomes <function>pg_switch_wal()</>, <application>pg_receivexlog</> +becomes <application>pg_receivewal</>, and <option>--xlogdir</> becomes <option>--waldir</>. This might +require adjustments for prior-version scripts. +</para> +</listitem> + <listitem> <!-- Author: Robert Haas <rhaas@postgresql.org> @@ -94,6 +132,25 @@ Rename transaction status directory <filename>pg_clog</> directory to <filename> </para> </listitem> +<listitem> +<!-- +Author: Andres Freund <andres@anarazel.de> +2017-01-18 [69f4b9c85] Move targetlist SRF handling from expression evaluation +Author: Tom Lane <tgl@sss.pgh.pa.us> +2017-01-18 [f13a1277a] Doc: improve documentation of new SRF-in-tlist behavior. +--> +<para> +Allow <literal>COALESCE</> and <literal>CASE</> to return multiple rows when evaluating +set-returning functions (Andres Freund). +</para> + +<para> +This also prevents conditionals like <literal>CASE</> from controlling the +execution of set-returning functions because set-returning functions +are now executed earlier. +</para> +</listitem> + <listitem> <!-- Author: Magnus Hagander <magnus@hagander.net> @@ -195,6 +252,22 @@ This replaces <varname>min_parallel_relation_size</>, which was too generic. </para> </listitem> +<listitem> +<!-- +Author: Tom Lane <tgl@sss.pgh.pa.us> +2016-10-12 [64f3524e2] Remove pg_dump/pg_dumpall support for dumping from pre-8 +--> +<para> +Remove <application>pg_dump</>/<application>pg_dumpall</> support for dumping from pre-8.0 servers (Tom +Lane) +</para> + +<para> +Users needing dump support for pre-8.0 servers need to use dump binaries +from Postgres 9.6. +</para> +</listitem> + <listitem> <!-- Author: Tom Lane <tgl@sss.pgh.pa.us> @@ -362,79 +435,6 @@ that can be used for parallelism (Julien Rouhaud) This can be set lower than <xref linkend="guc-max-worker-processes"> to reserve worker processes for non-parallel purposes. </para> -</listitem> - -<listitem> -<!--<listitem> -Author: Robert Haas <rhaas@postgresql.org> -2016-10-20 [f82ec32ac] Rename "pg_xlog" directory to "pg_wal" ---> -<para> -Rename <filename>pg_xlog</> to <link linkend="wal"><filename>pg_wal</></> (Michael Paquier) -</para> - -<para> -This prevents the write-ahead log directory from being confused as -containing server activity logs, and erroneously truncated. -</para> -</listitem> - -<listitem> -<!-- -Author: Robert Haas <rhaas@postgresql.org> -2017-02-09 [806091c96] Remove all references to "xlog" from SQL-callable functi -Author: Robert Haas <rhaas@postgresql.org> -2017-02-09 [85c11324c] Rename user-facing tools with "xlog" in the name to say -Author: Robert Haas <rhaas@postgresql.org> -2017-02-09 [62e8b3875] Rename command line options for ongoing xlog -> wal conv -Author: Fujii Masao <fujii@postgresql.org> -2017-02-15 [0dfa89ba2] Replace reference to "xlog-method" with "wal-method" in ---> -<para> -Rename <acronym>SQL</> functions, tools, and options that reference <quote>xlog</> to <quote>wal</> -(Robert Haas) -</para> - -<para> -For example, <function>pg_switch_xlog()</> becomes <function>pg_switch_wal()</>, <application>pg_receivexlog</> -becomes <application>pg_receivewal</>, and <option>--xlogdir</> becomes <option>--waldir</>. This might -require adjustments for prior-version scripts. -</para> -</listitem> - -<listitem> -<!-- -Author: Andres Freund <andres@anarazel.de> -2017-01-18 [69f4b9c85] Move targetlist SRF handling from expression evaluation -Author: Tom Lane <tgl@sss.pgh.pa.us> -2017-01-18 [f13a1277a] Doc: improve documentation of new SRF-in-tlist behavior. ---> -<para> -Allow <literal>COALESCE</> and <literal>CASE</> to return multiple rows when evaluating -set-returning functions (Andres Freund). -</para> - -<para> -This also prevents conditionals like <literal>CASE</> from controlling the -execution of set-returning functions because set-returning functions -are now executed earlier. -</para> -</listitem> - -<listitem> -<!-- -Author: Tom Lane <tgl@sss.pgh.pa.us> -2016-10-12 [64f3524e2] Remove pg_dump/pg_dumpall support for dumping from pre-8 ---> -<para> -Remove <application>pg_dump</>/<application>pg_dumpall</> support for dumping from pre-8.0 servers (Tom -Lane) -</para> - -<para> -Users needing dump support for pre-8.0 servers need to use dump binaries -from Postgres 9.6. -</para> </listitem> </itemizedlist> @@ -797,8 +797,8 @@ Author: Peter Eisentraut <peter_e@gmx.net> 2016-12-20 [1753b1b02] Add pg_sequence system catalog --> <para> -Create a <link linkend="catalog-pg-sequence"><structname>pg_sequence</></> system catalog to store sequence metadata (Andreas -Karlsson) +Create a <link linkend="catalog-pg-sequence"><structname>pg_sequence</></> system catalog to store sequence metadata +(Peter Eisentraut) </para> <para> -- GitLab