Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a0d932b3
Commit
a0d932b3
authored
Apr 24, 2017
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc: fix attribution of sequence item, order incompatibilities
Reported-by: Andreas Karlsson
parent
1d8573ed
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
75 additions
and
75 deletions
+75
-75
doc/src/sgml/release-10.sgml
doc/src/sgml/release-10.sgml
+75
-75
No files found.
doc/src/sgml/release-10.sgml
View file @
a0d932b3
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment