-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)
+
+
+
+
+
+ pg_hba.conf
+
+
+
-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">
- auth-pg-hba-conf">pg_hba.conf
+ localization">
+ charset">Localization
-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)