doc: more PG 16 relnote wording improvements
This commit is contained in:
parent
3ec8a3bfb5
commit
d8a81108a8
@ -253,7 +253,7 @@ Author: David Rowley <drowley@postgresql.org>
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Allow incremental sorts in more cases, including DISTINCT (David Rowley)window
|
Allow incremental sorts in more cases, including DISTINCT (David Rowley)
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -981,7 +981,7 @@ Store server variables in a hash table (Tom Lane)
|
|||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
This allows faster addition of server variables.
|
This allows the faster addition of server variables.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -992,7 +992,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
|
|||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
Tighten restrictions on what server variables can be reset (Masahiko Sawada)
|
Tighten restrictions on which server variables can be reset (Masahiko Sawada)
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
@ -1086,7 +1086,7 @@ Allow the postmaster to terminate children with an abort signal (Tom Lane)
|
|||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
Abort normally creates a core dump. This is controlled by send_abort_for_crash and send_abort_for_kill. postmaster -T now the same as setting send_abort_for_crash.
|
Abort normally creates a core dump. This is controlled by send_abort_for_crash and send_abort_for_kill. postmaster -T is now the same as setting send_abort_for_crash.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
@ -1116,63 +1116,6 @@ The number of reserved slots is set by server variable reserved_connections.
|
|||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
<!--
|
|
||||||
Author: Jeff Davis <jdavis@postgresql.org>
|
|
||||||
2023-03-10 [c45dc7ffb] initdb: derive encoding from locale for ICU; similar to
|
|
||||||
-->
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
Determine the ICU default locale from the environment (Jeff Davis)
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
However, ICU doesn't support the C local so UTF-8 is used in such cases. Previously the default was always UTF-8.
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Author: Peter Eisentraut <peter@eisentraut.org>
|
|
||||||
2023-03-10 [0d21d4b9b] Add standard collation UNICODE
|
|
||||||
-->
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
Add predefined collations "unicode" and "ucs_basic" (Peter Eisentraut)
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
This only works if ICU support is enabled.
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Author: Peter Eisentraut <peter@eisentraut.org>
|
|
||||||
2023-03-08 [30a53b792] Allow tailoring of ICU locales with custom rules
|
|
||||||
-->
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
Allow custom ICU collation rules to be created (Peter Eisentraut)
|
|
||||||
</para>
|
|
||||||
|
|
||||||
<para>
|
|
||||||
This is done using CREATE COLLATION's new new RULES clause, as well as new options for CREATE DATABASE, createdb, and initdb.
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Author: Peter Eisentraut <peter@eisentraut.org>
|
|
||||||
2023-01-03 [bf03cfd16] Windows support in pg_import_system_collations
|
|
||||||
-->
|
|
||||||
|
|
||||||
<listitem>
|
|
||||||
<para>
|
|
||||||
Add Windows process the system collations (Jose Santamaria Flecha)
|
|
||||||
ADD THIS?
|
|
||||||
</para>
|
|
||||||
</listitem>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Author: Thomas Munro <tmunro@postgresql.org>
|
Author: Thomas Munro <tmunro@postgresql.org>
|
||||||
2023-04-08 [d4e71df6d] Add io_direct setting (developer-only).
|
2023-04-08 [d4e71df6d] Add io_direct setting (developer-only).
|
||||||
@ -1266,6 +1209,72 @@ Author: Michael Paquier <michael@paquier.xyz>
|
|||||||
<para>
|
<para>
|
||||||
Add rule and map numbers to the system view pg_hba_file_rules (Julien Rouhaud)
|
Add rule and map numbers to the system view pg_hba_file_rules (Julien Rouhaud)
|
||||||
</para>
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
</itemizedlist>
|
||||||
|
|
||||||
|
</sect4>
|
||||||
|
|
||||||
|
<sect4 id="release-16-localization">
|
||||||
|
<title><link linkend="charset">Localization</link></title>
|
||||||
|
|
||||||
|
<itemizedlist>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Author: Jeff Davis <jdavis@postgresql.org>
|
||||||
|
2023-03-10 [c45dc7ffb] initdb: derive encoding from locale for ICU; similar to
|
||||||
|
-->
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Determine the ICU default locale from the environment (Jeff Davis)
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
However, ICU doesn't support the C local so UTF-8 is used in such cases. Previously the default was always UTF-8.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Author: Peter Eisentraut <peter@eisentraut.org>
|
||||||
|
2023-03-10 [0d21d4b9b] Add standard collation UNICODE
|
||||||
|
-->
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Add predefined collations "unicode" and "ucs_basic" (Peter Eisentraut)
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
This only works if ICU support is enabled.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Author: Peter Eisentraut <peter@eisentraut.org>
|
||||||
|
2023-03-08 [30a53b792] Allow tailoring of ICU locales with custom rules
|
||||||
|
-->
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Allow custom ICU collation rules to be created (Peter Eisentraut)
|
||||||
|
</para>
|
||||||
|
|
||||||
|
<para>
|
||||||
|
This is done using CREATE COLLATION's new new RULES clause, as well as new options for CREATE DATABASE, createdb, and initdb.
|
||||||
|
</para>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Author: Peter Eisentraut <peter@eisentraut.org>
|
||||||
|
2023-01-03 [bf03cfd16] Windows support in pg_import_system_collations
|
||||||
|
-->
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>
|
||||||
|
Add Windows process the system collations (Jose Santamaria Flecha)
|
||||||
|
ADD THIS?
|
||||||
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
|
|
||||||
</itemizedlist>
|
</itemizedlist>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user