doc: more PG 16 relnote wording improvements
authorBruce Momjian
Thu, 18 May 2023 21:42:47 +0000 (17:42 -0400)
committerBruce Momjian
Thu, 18 May 2023 21:43:10 +0000 (17:43 -0400)
doc/src/sgml/release-16.sgml

index b71e77fa533c1ec89f06459e4ff4e8364f4bbf6a..2bb67e9993d971f16a2ed01dc980c9b8a3048507 100644 (file)
@@ -253,7 +253,7 @@ Author: David Rowley 
 
 
 
-Allow incremental sorts in more cases, including DISTINCT (David Rowley)window
+Allow incremental sorts in more cases, including DISTINCT (David Rowley)
 
 
 
@@ -981,7 +981,7 @@ Store server variables in a hash table (Tom Lane)
 
 
 
-This allows faster addition of server variables.
+This allows the faster addition of server variables.
 
 
 
@@ -992,7 +992,7 @@ Author: Tom Lane 
 
 
 
-Tighten restrictions on what server variables can be reset (Masahiko Sawada)
+Tighten restrictions on which server variables can be reset (Masahiko Sawada)
 
 
 
@@ -1086,7 +1086,7 @@ Allow the postmaster to terminate children with an abort signal (Tom Lane)
 
 
 
-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.
 
 
 
@@ -1117,89 +1117,97 @@ The number of reserved slots is set by server variable reserved_connections.
 
 
 
 
 
 
-Determine the ICU default locale from the environment (Jeff Davis)
+Add debug_io_direct setting for developer usage (Thomas Munro, Andres Freund, Bharath Rupireddy)
 
 
 
-However, ICU doesn't support the C local so UTF-8 is used in such cases.  Previously the default was always UTF-8.
+While primarily for developers, wal_sync_method=open_sync/open_datasync has been modified to not use direct I/O with wal_level=minimal;  this is now enabled with debug_io_direct=wal.
 
 
 
 
 
 
 
-Add predefined collations "unicode" and "ucs_basic" (Peter Eisentraut)
-
-
-
-This only works if ICU support is enabled.
+Add function pg_dissect_walfile_name() to report the segment and timeline values of WAL file names (Bharath Rupireddy)
 
 
 
+     
+
+    
+
+    
+     <link linkend="auth-pg-hba-conf">pg_hba.conf</link>
+
+     
+
 
 
 
 
-Allow custom ICU collation rules to be created (Peter Eisentraut)
+Add support for regular expression matching on database and role entries in pg_hba.conf (Bertrand Drouvot)
 
 
 
-This is done using CREATE COLLATION's new new RULES clause, as well as new options for CREATE DATABASE, createdb, and initdb.
+Regular expression patterns are prefixed with a slash.  Database and role names that begin with slashes need to be double-quoted if referenced in pg_hba.conf.
 
 
 
 
 
 
 
-Add Windows process the system collations (Jose Santamaria Flecha)
-ADD THIS?
+Improve user-column handling of pg_ident.conf to match pg_hba.conf (Jelte Fennema)
+
+
+
+Specifically, add support for "all", role membership with "+", and regular expressions with a leading slash.  Any user name that matches these patterns must be double-quoted.
 
 
 
 
 
 
 
-Add debug_io_direct setting for developer usage (Thomas Munro, Andres Freund, Bharath Rupireddy)
+Allow include files in pg_hba.conf and pg_ident.conf (Julien Rouhaud)
 
 
 
-While primarily for developers, wal_sync_method=open_sync/open_datasync has been modified to not use direct I/O with wal_level=minimal;  this is now enabled with debug_io_direct=wal.
+These are controlled by "include", "include_if_exists", and "include_dir".  System views pg_hba_file_rules and pg_ident_file_mappings now display the file name.
 
 
 
 
 
 
 
-Add function pg_dissect_walfile_name() to report the segment and timeline values of WAL file names (Bharath Rupireddy)
+Add rule and map numbers to the system view pg_hba_file_rules (Julien Rouhaud)
 
 
 
@@ -1207,64 +1215,65 @@ Add function pg_dissect_walfile_name() to report the segment and timeline values
 
     
 
-    pg-hba">
-     <link linkend="<span class="marked">auth-pg-hba-conf">pg_hba.conf</span></link>
+    localization">
+     <link linkend="<span class="marked">charset">Localization</span></link>
 
      
 
 
 
 
 
-Add support for regular expression matching on database and role entries in pg_hba.conf (Bertrand Drouvot)
+Determine the ICU default locale from the environment (Jeff Davis)
 
 
 
-Regular expression patterns are prefixed with a slash.  Database and role names that begin with slashes need to be double-quoted if referenced in pg_hba.conf.
+However, ICU doesn't support the C local so UTF-8 is used in such cases.  Previously the default was always UTF-8.
 
 
 
 
 
 
 
-Improve user-column handling of pg_ident.conf to match pg_hba.conf (Jelte Fennema)
+Add predefined collations "unicode" and "ucs_basic" (Peter Eisentraut)
 
 
 
-Specifically, add support for "all", role membership with "+", and regular expressions with a leading slash.  Any user name that matches these patterns must be double-quoted.
+This only works if ICU support is enabled.
 
 
 
 
 
 
 
-Allow include files in pg_hba.conf and pg_ident.conf (Julien Rouhaud)
+Allow custom ICU collation rules to be created (Peter Eisentraut)
 
 
 
-These are controlled by "include", "include_if_exists", and "include_dir".  System views pg_hba_file_rules and pg_ident_file_mappings now display the file name.
+This is done using CREATE COLLATION's new new RULES clause, as well as new options for CREATE DATABASE, createdb, and initdb.
 
 
 
 
 
 
 
-Add rule and map numbers to the system view pg_hba_file_rules (Julien Rouhaud)
+Add Windows process the system collations (Jose Santamaria Flecha)
+ADD THIS?