@@ -83,6 +83,44 @@ Karlsson)
8383</para>
8484</listitem>
8585
86+ <listitem>
87+ <!--<listitem>
88+ Author: Robert Haas <rhaas@postgresql.org>
89+ 2016-10-20 [f82ec32ac] Rename "pg_xlog" directory to "pg_wal"
90+ -->
91+ <para>
92+ Rename <filename>pg_xlog</> to <link linkend="wal"><filename>pg_wal</></> (Michael Paquier)
93+ </para>
94+
95+ <para>
96+ This prevents the write-ahead log directory from being confused as
97+ containing server activity logs, and erroneously truncated.
98+ </para>
99+ </listitem>
100+
101+ <listitem>
102+ <!--
103+ Author: Robert Haas <rhaas@postgresql.org>
104+ 2017-02-09 [806091c96] Remove all references to "xlog" from SQL-callable functi
105+ Author: Robert Haas <rhaas@postgresql.org>
106+ 2017-02-09 [85c11324c] Rename user-facing tools with "xlog" in the name to say
107+ Author: Robert Haas <rhaas@postgresql.org>
108+ 2017-02-09 [62e8b3875] Rename command line options for ongoing xlog -> wal conv
109+ Author: Fujii Masao <fujii@postgresql.org>
110+ 2017-02-15 [0dfa89ba2] Replace reference to "xlog-method" with "wal-method" in
111+ -->
112+ <para>
113+ Rename <acronym>SQL</> functions, tools, and options that reference <quote>xlog</> to <quote>wal</>
114+ (Robert Haas)
115+ </para>
116+
117+ <para>
118+ For example, <function>pg_switch_xlog()</> becomes <function>pg_switch_wal()</>, <application>pg_receivexlog</>
119+ becomes <application>pg_receivewal</>, and <option>--xlogdir</> becomes <option>--waldir</>. This might
120+ require adjustments for prior-version scripts.
121+ </para>
122+ </listitem>
123+
86124<listitem>
87125<!--
88126Author: Robert Haas <rhaas@postgresql.org>
@@ -94,6 +132,25 @@ Rename transaction status directory <filename>pg_clog</> directory to <filename>
94132</para>
95133</listitem>
96134
135+ <listitem>
136+ <!--
137+ Author: Andres Freund <andres@anarazel.de>
138+ 2017-01-18 [69f4b9c85] Move targetlist SRF handling from expression evaluation
139+ Author: Tom Lane <tgl@sss.pgh.pa.us>
140+ 2017-01-18 [f13a1277a] Doc: improve documentation of new SRF-in-tlist behavior.
141+ -->
142+ <para>
143+ Allow <literal>COALESCE</> and <literal>CASE</> to return multiple rows when evaluating
144+ set-returning functions (Andres Freund).
145+ </para>
146+
147+ <para>
148+ This also prevents conditionals like <literal>CASE</> from controlling the
149+ execution of set-returning functions because set-returning functions
150+ are now executed earlier.
151+ </para>
152+ </listitem>
153+
97154<listitem>
98155<!--
99156Author: Magnus Hagander <magnus@hagander.net>
@@ -195,6 +252,22 @@ This replaces <varname>min_parallel_relation_size</>, which was too generic.
195252</para>
196253</listitem>
197254
255+ <listitem>
256+ <!--
257+ Author: Tom Lane <tgl@sss.pgh.pa.us>
258+ 2016-10-12 [64f3524e2] Remove pg_dump/pg_dumpall support for dumping from pre-8
259+ -->
260+ <para>
261+ Remove <application>pg_dump</>/<application>pg_dumpall</> support for dumping from pre-8.0 servers (Tom
262+ Lane)
263+ </para>
264+
265+ <para>
266+ Users needing dump support for pre-8.0 servers need to use dump binaries
267+ from Postgres 9.6.
268+ </para>
269+ </listitem>
270+
198271<listitem>
199272<!--
200273Author: Tom Lane <tgl@sss.pgh.pa.us>
@@ -362,79 +435,6 @@ that can be used for parallelism (Julien Rouhaud)
362435This can be set lower than <xref linkend="guc-max-worker-processes"> to reserve worker
363436processes for non-parallel purposes.
364437</para>
365- </listitem>
366-
367- <listitem>
368- <!--<listitem>
369- Author: Robert Haas <rhaas@postgresql.org>
370- 2016-10-20 [f82ec32ac] Rename "pg_xlog" directory to "pg_wal"
371- -->
372- <para>
373- Rename <filename>pg_xlog</> to <link linkend="wal"><filename>pg_wal</></> (Michael Paquier)
374- </para>
375-
376- <para>
377- This prevents the write-ahead log directory from being confused as
378- containing server activity logs, and erroneously truncated.
379- </para>
380- </listitem>
381-
382- <listitem>
383- <!--
384- Author: Robert Haas <rhaas@postgresql.org>
385- 2017-02-09 [806091c96] Remove all references to "xlog" from SQL-callable functi
386- Author: Robert Haas <rhaas@postgresql.org>
387- 2017-02-09 [85c11324c] Rename user-facing tools with "xlog" in the name to say
388- Author: Robert Haas <rhaas@postgresql.org>
389- 2017-02-09 [62e8b3875] Rename command line options for ongoing xlog -> wal conv
390- Author: Fujii Masao <fujii@postgresql.org>
391- 2017-02-15 [0dfa89ba2] Replace reference to "xlog-method" with "wal-method" in
392- -->
393- <para>
394- Rename <acronym>SQL</> functions, tools, and options that reference <quote>xlog</> to <quote>wal</>
395- (Robert Haas)
396- </para>
397-
398- <para>
399- For example, <function>pg_switch_xlog()</> becomes <function>pg_switch_wal()</>, <application>pg_receivexlog</>
400- becomes <application>pg_receivewal</>, and <option>--xlogdir</> becomes <option>--waldir</>. This might
401- require adjustments for prior-version scripts.
402- </para>
403- </listitem>
404-
405- <listitem>
406- <!--
407- Author: Andres Freund <andres@anarazel.de>
408- 2017-01-18 [69f4b9c85] Move targetlist SRF handling from expression evaluation
409- Author: Tom Lane <tgl@sss.pgh.pa.us>
410- 2017-01-18 [f13a1277a] Doc: improve documentation of new SRF-in-tlist behavior.
411- -->
412- <para>
413- Allow <literal>COALESCE</> and <literal>CASE</> to return multiple rows when evaluating
414- set-returning functions (Andres Freund).
415- </para>
416-
417- <para>
418- This also prevents conditionals like <literal>CASE</> from controlling the
419- execution of set-returning functions because set-returning functions
420- are now executed earlier.
421- </para>
422- </listitem>
423-
424- <listitem>
425- <!--
426- Author: Tom Lane <tgl@sss.pgh.pa.us>
427- 2016-10-12 [64f3524e2] Remove pg_dump/pg_dumpall support for dumping from pre-8
428- -->
429- <para>
430- Remove <application>pg_dump</>/<application>pg_dumpall</> support for dumping from pre-8.0 servers (Tom
431- Lane)
432- </para>
433-
434- <para>
435- Users needing dump support for pre-8.0 servers need to use dump binaries
436- from Postgres 9.6.
437- </para>
438438</listitem>
439439
440440 </itemizedlist>
@@ -797,8 +797,8 @@ Author: Peter Eisentraut <peter_e@gmx.net>
7977972016-12-20 [1753b1b02] Add pg_sequence system catalog
798798-->
799799<para>
800- Create a <link linkend="catalog-pg-sequence"><structname>pg_sequence</></> system catalog to store sequence metadata (Andreas
801- Karlsson )
800+ Create a <link linkend="catalog-pg-sequence"><structname>pg_sequence</></> system catalog to store sequence metadata
801+ (Peter Eisentraut )
802802</para>
803803
804804<para>
0 commit comments