From 6b86a3e0b421a0e0c9cfa02ddc0525e431379ee4 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 16 Aug 2023 14:34:49 -0400 Subject: [PATCH] doc: PG 16 relnotes, initial markup Still need to add links to doc sections. Backpatch-through: 16 only --- doc/src/sgml/release-16.sgml | 547 +++++++++++++++++------------------ 1 file changed, 273 insertions(+), 274 deletions(-) diff --git a/doc/src/sgml/release-16.sgml b/doc/src/sgml/release-16.sgml index 6e86ffb3ba..a8e54bd137 100644 --- a/doc/src/sgml/release-16.sgml +++ b/doc/src/sgml/release-16.sgml @@ -21,7 +21,7 @@ - Allow parallelization of FULL and internal right OUTER hash joins + Allow parallelization of FULL and internal right OUTER hash joins @@ -39,13 +39,13 @@ - Allow monitoring of I/O statistics using the new pg_stat_io view + Allow monitoring of I/O statistics using the new pg_stat_io view - Add SQL/JSON constructors and identity functions + Add SQL/JSON constructors and identity functions @@ -57,7 +57,7 @@ - Add support for regular expression matching of user and database names in pg_hba.conf, and user names in pg_ident.conf + Add support for regular expression matching of user and database names in pg_hba.conf, and user names in pg_ident.conf @@ -97,12 +97,12 @@ Author: Tom Lane -Change assignment rules for PL/pgSQL bound cursor variables (Tom Lane) +Change assignment rules for PL/pgSQL bound cursor variables (Tom Lane) -Previously, the string value of such variables was set to match the variable name during cursor assignment; now it will be assigned during OPEN, and will not match the variable name. -To restore the previous behavior, assign the desired portal name to the cursor variable before OPEN. +Previously, the string value of such variables was set to match the variable name during cursor assignment; now it will be assigned during OPEN, and will not match the variable name. +To restore the previous behavior, assign the desired portal name to the cursor variable before OPEN. @@ -113,7 +113,7 @@ Author: Daniel Gustafsson -Disallow NULLS NOT DISTINCT indexes for primary keys (Daniel Gustafsson) +Disallow NULLS NOT DISTINCT indexes for primary keys (Daniel Gustafsson) @@ -126,11 +126,11 @@ Author: Michael Paquier -Change REINDEX DATABASE and reindexdb to not process indexes on system catalogs (Simon Riggs) +Change REINDEX DATABASE and reindexdb to not process indexes on system catalogs (Simon Riggs) -Processing such indexes is still possible using REINDEX SYSTEM and reindexdb --system. +Processing such indexes is still possible using REINDEX SYSTEM and reindexdb --system. @@ -141,7 +141,7 @@ Author: Tom Lane -Tighten GENERATED expression restrictions on inherited and partitioned tables (Amit Langote, Tom Lane) +Tighten GENERATED expression restrictions on inherited and partitioned tables (Amit Langote, Tom Lane) @@ -156,7 +156,7 @@ Author: Michael Paquier -Remove pg_walinspect functions pg_get_wal_records_info_till_end_of_wal() and pg_get_wal_stats_till_end_of_wal() (Bharath Rupireddy) +Remove pg_walinspect functions pg_get_wal_records_info_till_end_of_wal() and pg_get_wal_stats_till_end_of_wal() (Bharath Rupireddy) @@ -169,7 +169,7 @@ Author: David Rowley -Rename server variable force_parallel_mode to debug_parallel_query (David Rowley) +Rename server variable force_parallel_mode to debug_parallel_query (David Rowley) @@ -180,7 +180,7 @@ Author: Tom Lane -Remove the ability to create views manually with ON SELECT rules (Tom Lane) +Remove the ability to create views manually with ON SELECT rules (Tom Lane) @@ -191,11 +191,11 @@ Author: Andres Freund -Remove the server variable vacuum_defer_cleanup_age (Andres Freund) +Remove the server variable vacuum_defer_cleanup_age (Andres Freund) -This has been unnecessary since hot_standby_feedback and replication slots were added. +This has been unnecessary since hot_standby_feedback and replication slots were added. @@ -206,11 +206,11 @@ Author: Thomas Munro -Remove server variable promote_trigger_file (Simon Riggs) +Remove server variable promote_trigger_file (Simon Riggs) -This was used to promote a standby to primary, but is now easier accomplished with pg_ctl promote or pg_promote(). +This was used to promote a standby to primary, but is now easier accomplished with pg_ctl promote or pg_promote(). @@ -221,7 +221,7 @@ Author: Peter Eisentraut -Remove read-only server variables lc_collate and lc_ctype (Peter Eisentraut) +Remove read-only server variables lc_collate and lc_ctype (Peter Eisentraut) @@ -238,12 +238,12 @@ Author: Robert Haas -Restrict the privileges of CREATEROLE and its ability to modify other roles (Robert Haas) +Restrict the privileges of CREATEROLE and its ability to modify other roles (Robert Haas) -Previously roles with CREATEROLE privileges could change many aspects of any non-superuser role. Such changes, including adding members, now require the role requesting the change to have ADMIN OPTION -permission. For example, they can now change the CREATEDB, REPLICATION, and BYPASSRLS properties only if they also have those permissions. +Previously roles with CREATEROLE privileges could change many aspects of any non-superuser role. Such changes, including adding members, now require the role requesting the change to have ADMIN OPTION +permission. For example, they can now change the CREATEDB, REPLICATION, and BYPASSRLS properties only if they also have those permissions. @@ -254,7 +254,7 @@ Author: Peter Eisentraut -Remove symbolic links for the postmaster binary (Peter Eisentraut) +Remove symbolic links for the postmaster binary (Peter Eisentraut) @@ -288,7 +288,7 @@ Author: David Rowley -Allow incremental sorts in more cases, including DISTINCT (David Rowley) +Allow incremental sorts in more cases, including DISTINCT (David Rowley) @@ -303,11 +303,11 @@ Author: David Rowley -Add the ability for aggregates having ORDER BY or DISTINCT to use pre-sorted data (David Rowley) +Add the ability for aggregates having ORDER BY or DISTINCT to use pre-sorted data (David Rowley) -This ability is new in this release and the server variable to disable it is called enable_presorted_aggregate. +The new server variable enable_presorted_aggregate can be used to disable this. @@ -318,7 +318,7 @@ Author: Tom Lane -Allow memoize atop a UNION ALL (Richard Guo) +Allow memoize atop a UNION ALL (Richard Guo) @@ -340,7 +340,7 @@ Author: Thomas Munro -Allow parallelization of FULL and internal right OUTER hash joins (Melanie Plageman, Thomas Munro) +Allow parallelization of FULL and internal right OUTER hash joins (Melanie Plageman, Thomas Munro) @@ -351,7 +351,7 @@ Author: Alexander Korotkov -Improve the accuracy of GIN index access optimizer costs (Ronan Dunklau) +Improve the accuracy of GIN index access optimizer costs (Ronan Dunklau) @@ -403,7 +403,7 @@ Author: David Rowley -Allow window functions to use ROWS mode internally when RANGE mode is specified but unnecessary (David Rowley) +Allow window functions to use ROWS mode internally when RANGE mode is specified but unnecessary (David Rowley) @@ -414,7 +414,7 @@ Author: David Rowley -Allow optimization of always-increasing window functions ntile(), cume_dist() and percent_rank() (David Rowley) +Allow optimization of always-increasing window functions ntile(), cume_dist() and percent_rank() (David Rowley) @@ -425,7 +425,7 @@ Author: David Rowley -Allow aggregate functions string_agg() and array_agg() to be parallelized (David Rowley) +Allow aggregate functions string_agg() and array_agg() to be parallelized (David Rowley) @@ -436,7 +436,7 @@ Author: David Rowley -Improve performance by caching RANGE and LIST partition lookups (Amit Langote, Hou Zhijie, David Rowley) +Improve performance by caching RANGE and LIST partition lookups (Amit Langote, Hou Zhijie, David Rowley) @@ -455,7 +455,7 @@ Allow control of the shared buffer usage by vacuum and analyze (Melanie Plageman -The VACUUM/ANALYZE option is BUFFER_USAGE_LIMIT, and the vacuumdb option is --buffer-usage-limit. The default value is set by server variable vacuum_buffer_usage_limit, which also controls autovacuum. +The VACUUM/ANALYZE option is BUFFER_USAGE_LIMIT, and the vacuumdb option is . The default value is set by server variable vacuum_buffer_usage_limit, which also controls autovacuum. @@ -466,7 +466,7 @@ Author: Thomas Munro -Support wal_sync_method=fdatasync on Windows (Thomas Munro) +Support wal_sync_method=fdatasync on Windows (Thomas Munro) @@ -477,7 +477,7 @@ Author: Tomas Vondra -Allow HOT updates if only BRIN-indexed columns are updated (Matthias van de Meent, Josef Simanek, Tomas Vondra) +Allow HOT updates if only BRIN-indexed columns are updated (Matthias van de Meent, Josef Simanek, Tomas Vondra) @@ -505,11 +505,11 @@ Author: John Naylor -Allow xid/subxid searches and ASCII string detection to use vector operations (Nathan Bossart, John Naylor) +Allow xid/subxid searches and ASCII string detection to use vector operations (Nathan Bossart, John Naylor) -ASCII detection is particularly useful for COPY FROM. Vector operations are also used for some C array searches. +ASCII detection is particularly useful for COPY FROM. Vector operations are also used for some C array searches. @@ -549,7 +549,7 @@ Author: Andres Freund -Add system view pg_stat_io view to track IO statistics (Melanie Plageman) +Add system view pg_stat_io view to track I/O statistics (Melanie Plageman) @@ -564,7 +564,7 @@ Record statistics on the last sequential and index scans on tables (Dave Page) -This information appears in pg_stat_all_tables and pg_stat_all_indexes. +This information appears in pg_stat_all_tables and pg_stat_all_indexes. @@ -579,7 +579,7 @@ Record statistics on the occurrence of updated rows moving to new pages (Corey H -The pg_stat_*_tables column is n_tup_newpage_upd. +The pg_stat_*_tables column is n_tup_newpage_upd. @@ -590,11 +590,11 @@ Author: Amit Kapila -Add speculative lock information to the pg_locks system view (Masahiko Sawada, Noriyoshi Shinoda) +Add speculative lock information to the pg_locks system view (Masahiko Sawada, Noriyoshi Shinoda) -The transaction id is displayed in the transactionid field and the speculative insertion token is displayed in the objid field. +The transaction id is displayed in the transactionid column and the speculative insertion token is displayed in the objid column. @@ -607,7 +607,7 @@ Author: Peter Eisentraut -Add the display of prepared statement result types to the pg_prepared_statements view (Dagfinn Ilmari Mannsåker) +Add the display of prepared statement result types to the pg_prepared_statements view (Dagfinn Ilmari Mannsåker) @@ -618,7 +618,7 @@ Author: Andres Freund -Create subscription statistics entries at subscription creation time so stats_reset is accurate (Andres Freund) +Create subscription statistics entries at subscription creation time so stats_reset is accurate (Andres Freund) @@ -633,7 +633,7 @@ Author: Andres Freund -Correct the IO accounting for temp relation writes shown in pg_stat_database (Melanie Plageman) +Correct the I/O accounting for temp relation writes shown in pg_stat_database (Melanie Plageman) @@ -644,7 +644,7 @@ Author: Robert Haas -Add function pg_stat_get_backend_subxact() to report on a session's subtransaction cache (Dilip Kumar) +Add function pg_stat_get_backend_subxact() to report on a session's subtransaction cache (Dilip Kumar) @@ -655,7 +655,7 @@ Author: Tom Lane -Have pg_stat_get_backend_idset(), pg_stat_get_backend_activity(), and related functions use the unchanging backend id (Nathan Bossart) +Have pg_stat_get_backend_idset(), pg_stat_get_backend_activity(), and related functions use the unchanging backend id (Nathan Bossart) @@ -681,7 +681,7 @@ Author: Andres Freund -Add wait event SpinDelay to report spinlock sleep delays (Andres Freund) +Add wait event SpinDelay to report spinlock sleep delays (Andres Freund) @@ -692,11 +692,11 @@ Author: Thomas Munro -Create new wait event "DSMAllocate" to indicate waiting for dynamic shared memory allocation (Thomas Munro) +Create new wait event DSMAllocate to indicate waiting for dynamic shared memory allocation (Thomas Munro) -Previously this type of wait was reported as "DSMFillZeroWrite", which was also used by mmap() allocations. +Previously this type of wait was reported as DSMFillZeroWrite, which was also used by mmap() allocations. @@ -707,11 +707,11 @@ Author: Michael Paquier -Add the database name to the process display of logical WAL senders (Tatsuhiro Nakamori) +Add the database name to the process display of logical WAL senders (Tatsuhiro Nakamori) -Physical WAL senders do not display a database name. +Physical WAL senders do not display a database name. @@ -722,7 +722,7 @@ Author: Fujii Masao -Add checkpoint and REDO LSN information to log_checkpoints messages (Bharath Rupireddy, Kyotaro Horiguchi) +Add checkpoint and REDO LSN information to log_checkpoints messages (Bharath Rupireddy, Kyotaro Horiguchi) @@ -753,7 +753,7 @@ Author: Robert Haas -Add predefined role pg_create_subscription with permission to create subscriptions (Robert Haas) +Add predefined role pg_create_subscription with permission to create subscriptions (Robert Haas) @@ -772,7 +772,7 @@ Allow subscriptions to not require passwords (Robert Haas) -This is accomplished with the option password_required=false. +This is accomplished with the option password_required=false. @@ -783,12 +783,12 @@ Author: Jeff Davis -Simplify permissions for LOCK TABLE (Jeff Davis) +Simplify permissions for LOCK TABLE (Jeff Davis) -Previously the ability to perform LOCK TABLE at various lock levels was bound to specific query-type permissions. For example, UPDATE could perform all lock levels except ACCESS SHARE, which -required SELECT permissions. Now UPDATE can issue all lock levels. MORE? +Previously the ability to perform LOCK TABLE at various lock levels was bound to specific query-type permissions. For example, UPDATE could perform all lock levels except ACCESS SHARE, which +required SELECT permissions. Now UPDATE can issue all lock levels. MORE? @@ -799,11 +799,11 @@ Author: Robert Haas -Allow "GRANT group_name TO user_name" to be performed with ADMIN OPTION (Robert Haas) +Allow GRANT group_name TO user_name to be performed with ADMIN OPTION (Robert Haas) -Previously CREATEROLE permission was required. +Previously CREATEROLE permission was required. @@ -814,11 +814,11 @@ Author: Robert Haas -Allow GRANT to control role inheritance behavior (Robert Haas) +Allow GRANT to control role inheritance behavior (Robert Haas) -By default, role inheritance is controlled by the inheritance status of the member role. The new GRANT clauses WITH INHERIT and WITH ADMIN can now override this. +By default, role inheritance is controlled by the inheritance status of the member role. The new GRANT clauses WITH INHERIT and WITH ADMIN can now override this. @@ -831,11 +831,11 @@ Author: Daniel Gustafsson -Allow roles that create other roles to automatically inherit the new role's rights or the ability to SET ROLE to the new role (Robert Haas, Shi Yu) +Allow roles that create other roles to automatically inherit the new role's rights or the ability to SET ROLE to the new role (Robert Haas, Shi Yu) -This is controlled by server variable createrole_self_grant. +This is controlled by server variable createrole_self_grant. @@ -891,11 +891,11 @@ Author: Robert Haas -Add GRANT to control permission to use SET ROLE (Robert Haas) +Add GRANT to control permission to use SET ROLE (Robert Haas) -This is controlled by a new GRANT ... SET option. +This is controlled by a new GRANT ... SET option. @@ -910,7 +910,7 @@ Add dependency tracking to roles which have granted privileges (Robert Haas) -For example, removing ADMIN OPTION will fail if there are privileges using that option; CASCADE must be used to revoke dependent permissions. +For example, removing ADMIN OPTION will fail if there are privileges using that option; CASCADE must be used to revoke dependent permissions. @@ -921,11 +921,11 @@ Author: Robert Haas -Add dependency tracking of grantors for GRANT records (Robert Haas) +Add dependency tracking of grantors for GRANT records (Robert Haas) -This guarantees that pg_auth_members.grantor values are always valid. +This guarantees that pg_auth_members.grantor values are always valid. @@ -968,11 +968,11 @@ Author: Tom Lane -Allow makeaclitem() to accept multiple privilege names (Robins Tharakan) +Allow makeaclitem() to accept multiple privilege names (Robins Tharakan) -Previously only a single privilege name, like SELECT, was accepted. +Previously only a single privilege name, like SELECT, was accepted. @@ -1002,8 +1002,7 @@ Add support for Kerberos credential delegation (Stephen Frost) -This is enabled with server variable gss_accept_delegation -and libpq connection parameter gssdelegation. +This is enabled with server variable gss_accept_delegation and libpq connection parameter gssdelegation. @@ -1014,7 +1013,7 @@ Author: Daniel Gustafsson -Allow the SCRAM iteration count to be set with server variable scram_iterations (Daniel Gustafsson) +Allow the SCRAM iteration count to be set with server variable scram_iterations (Daniel Gustafsson) @@ -1042,7 +1041,7 @@ Tighten restrictions on which server variables can be reset (Masahiko Sawada) -Previously, while certain variables, like transaction_isolation, were not affected by RESET ALL, they could be individually reset in inappropriate situations. +Previously, while certain variables, like transaction_isolation, were not affected by RESET ALL, they could be individually reset in inappropriate situations. @@ -1053,11 +1052,11 @@ Author: Michael Paquier -Move various postgresql.conf items into new categories (Shinya Kato) +Move various postgresql.conf items into new categories (Shinya Kato) -This also affects the categories displayed in the pg_settings view. +This also affects the categories displayed in the pg_settings view. @@ -1102,7 +1101,7 @@ Remove restrictions that archive files be durably renamed (Nathan Bossart) -The archive command is now more likely to be called with already-archived files after a crash. +The archive_command command is now more likely to be called with already-archived files after a crash. @@ -1113,11 +1112,11 @@ Author: Peter Eisentraut -Prevent archive_library and archive_command from being set at the same time (Nathan Bossart) +Prevent archive_library and archive_command from being set at the same time (Nathan Bossart) -Previously archive_library would override archive_command. +Previously archive_library would override archive_command. @@ -1133,8 +1132,8 @@ Allow the postmaster to terminate children with an abort signal (Tom Lane) This allows collection of a core dump for a stuck child process. -This is controlled by send_abort_for_crash and send_abort_for_kill. -The postmaster's -T switch is now the same as setting send_abort_for_crash. +This is controlled by send_abort_for_crash and send_abort_for_kill. +The postmaster's switch is now the same as setting send_abort_for_crash. @@ -1145,7 +1144,7 @@ Author: Tom Lane -Remove the non-functional postmaster -n option (Tom Lane) +Remove the non-functional postmaster option (Tom Lane) @@ -1156,11 +1155,11 @@ Author: Robert Haas -Allow the server to reserve backend slots for roles with pg_use_reserved_connections membership (Nathan Bossart) +Allow the server to reserve backend slots for roles with pg_use_reserved_connections membership (Nathan Bossart) -The number of reserved slots is set by server variable reserved_connections. +The number of reserved slots is set by server variable reserved_connections. @@ -1171,11 +1170,11 @@ Author: Michael Paquier -Allow huge pages to work on newer versions of Windows 10 (Thomas Munro) +Allow huge pages to work on newer versions of Windows 10 (Thomas Munro) -This adds the special handling required to enable huge pages on newer versions of Windows 10. +This adds the special handling required to enable huge pages on newer versions of Windows 10. @@ -1188,11 +1187,11 @@ Author: Thomas Munro -Add debug_io_direct setting for developer usage (Thomas Munro, Andres Freund, Bharath Rupireddy) +Add debug_io_direct setting for developer usage (Thomas Munro, Andres Freund, Bharath Rupireddy) -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. +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. @@ -1205,7 +1204,7 @@ Author: Michael Paquier -Add function pg_split_walfile_name() to report the segment and timeline values of WAL file names (Bharath Rupireddy) +Add function pg_split_walfile_name() to report the segment and timeline values of WAL file names (Bharath Rupireddy) @@ -1225,11 +1224,11 @@ Author: Michael Paquier -Add support for regular expression matching on database and role entries in pg_hba.conf (Bertrand Drouvot) +Add support for regular expression matching on database and role entries in pg_hba.conf (Bertrand Drouvot) -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. +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. @@ -1240,11 +1239,11 @@ Author: Michael Paquier -Improve user-column handling of pg_ident.conf to match pg_hba.conf (Jelte Fennema) +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. +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. @@ -1255,11 +1254,11 @@ Author: Michael Paquier -Allow include files in pg_hba.conf and pg_ident.conf (Julien Rouhaud) +Allow include files in pg_hba.conf and pg_ident.conf (Julien Rouhaud) -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. +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. @@ -1270,7 +1269,7 @@ Author: Tom Lane -Allow pg_hba.conf tokens to be of unlimited length (Tom Lane) +Allow pg_hba.conf tokens to be of unlimited length (Tom Lane) @@ -1281,7 +1280,7 @@ Author: Michael Paquier -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) @@ -1301,11 +1300,11 @@ Author: Jeff Davis -Determine the ICU default locale from the environment (Jeff Davis) +Determine the ICU default locale from the environment (Jeff Davis) -However, ICU doesn't support the C locale so UTF-8 is used in such cases. Previously the default was always UTF-8. +However, ICU doesn't support the C locale so UTF-8 is used in such cases. Previously the default was always UTF-8. @@ -1316,11 +1315,11 @@ Date: Fri Jun 16 10:27:32 2023 -0700 -Have CREATE DATABASE and CREATE COLLATION's LOCALE options, and initdb and createdb --locale options, control non-libc collation providers (Jeff Davis) +Have CREATE DATABASE and CREATE COLLATION's LOCALE options, and initdb and createdb options, control non-libc collation providers (Jeff Davis) -Previously they only controlled libc providers. +Previously they only controlled libc providers. @@ -1331,11 +1330,11 @@ Author: Peter Eisentraut -Add predefined collations "unicode" and "ucs_basic" (Peter Eisentraut) +Add predefined collations unicode and ucs_basic (Peter Eisentraut) -This only works if ICU support is enabled. +This only works if ICU support is enabled. @@ -1346,11 +1345,11 @@ Author: Peter Eisentraut -Allow custom ICU collation rules to be created (Peter Eisentraut) +Allow custom ICU collation rules to be created (Peter Eisentraut) -This is done using CREATE COLLATION's new RULES clause, as well as new options for CREATE DATABASE, createdb, and initdb. +This is done using CREATE COLLATION's new RULES clause, as well as new options for CREATE DATABASE, createdb, and initdb. @@ -1361,11 +1360,11 @@ Author: Peter Eisentraut -Allow Windows to import system locales automatically (Juan José Santamaría Flecha) +Allow Windows to import system locales automatically (Juan José Santamaría Flecha) -Previously, only ICU locales could be imported on Windows. +Previously, only ICU locales could be imported on Windows. @@ -1397,8 +1396,8 @@ Allow logical decoding on standbys (Bertrand Drouvot, Andres Freund, Amit Khande -Snapshot WAL records are required for logical slot creation but cannot be created on standbys. -To avoid delays, the new function pg_log_standby_snapshot() allows creation of such records. +Snapshot WAL records are required for logical slot creation but cannot be created on standbys. +To avoid delays, the new function pg_log_standby_snapshot() allows creation of such records. @@ -1417,7 +1416,7 @@ Add server variable to control how logical decoding publishers transfer changes -The variable is logical_replication_mode. +The variable is logical_replication_mode. @@ -1451,9 +1450,9 @@ Allow parallel application of logical replication (Hou Zhijie, Wang Wei, Amit Ka -The CREATE SUBSCRIPTION "streaming" option now supports "parallel" to enable application of large transactions by parallel workers. The number of parallel workers is controlled by -the new server variable max_parallel_apply_workers_per_subscription. Wait events LogicalParallelApplyMain, LogicalParallelApplyStateChange, and LogicalApplySendData were also added. Column leader_pid was -added to system view pg_stat_subscription to track parallel activity. +The CREATE SUBSCRIPTION option now supports parallel to enable application of large transactions by parallel workers. The number of parallel workers is controlled by +the new server variable max_parallel_apply_workers_per_subscription. Wait events LogicalParallelApplyMain, LogicalParallelApplyStateChange, and LogicalApplySendData were also added. Column leader_pid was +added to system view pg_stat_subscription to track parallel activity. @@ -1468,7 +1467,7 @@ Improve performance for logical replication apply without a primary key (Onder K -Specifically, REPLICA IDENTITY FULL can now use btree indexes rather than sequentially scanning the table to find matches. +Specifically, REPLICA IDENTITY FULL can now use btree indexes rather than sequentially scanning the table to find matches. @@ -1485,7 +1484,7 @@ Allow logical replication subscribers to process only changes that have no origi -This can be used to avoid replication loops. This is controlled by the new CREATE SUBSCRIPTION "origin" option. +This can be used to avoid replication loops. This is controlled by the new CREATE SUBSCRIPTION ... ORIGIN option. @@ -1498,12 +1497,12 @@ Author: Robert Haas -Perform logical replication SELECT and DML actions as the table owner (Robert Haas) +Perform logical replication SELECT and DML actions as the table owner (Robert Haas) -This improves security and now requires subscription owners to be either superusers or to have SET ROLE permissions on all tables in the replication set. The previous behavior of performing all operations -as the subscription owner can be enabled with the subscription run_as_owner option. +This improves security and now requires subscription owners to be either superusers or to have SET ROLE permissions on all tables in the replication set. The previous behavior of performing all operations +as the subscription owner can be enabled with the subscription option. @@ -1514,11 +1513,11 @@ Author: Tom Lane -Have wal_retrieve_retry_interval operate on a per-subscription basis (Nathan Bossart) +Have wal_retrieve_retry_interval operate on a per-subscription basis (Nathan Bossart) -Previously the retry time was applied globally. This also adds wait events LogicalRepLauncherDSA and LogicalRepLauncherHash. +Previously the retry time was applied globally. This also adds wait events LogicalRepLauncherDSA and LogicalRepLauncherHash. @@ -1538,7 +1537,7 @@ Author: Tom Lane -Add EXPLAIN option GENERIC_PLAN to display the generic plan for a parameterized query (Laurenz Albe) +Add EXPLAIN option GENERIC_PLAN to display the generic plan for a parameterized query (Laurenz Albe) @@ -1549,7 +1548,7 @@ Author: Andrew Dunstan -Allow a COPY FROM value to map to a column's DEFAULT (Israel Barth Rubio) +Allow a COPY FROM value to map to a column's DEFAULT (Israel Barth Rubio) @@ -1560,11 +1559,11 @@ Author: Etsuro Fujita -Allow COPY into foreign tables to add rows in batches (Andrey Lepikhov, Etsuro Fujita) +Allow COPY into foreign tables to add rows in batches (Andrey Lepikhov, Etsuro Fujita) -This is controlled by the postgres_fdw "batch_size" option. +This is controlled by the postgres_fdw option . @@ -1577,11 +1576,11 @@ Author: Tom Lane -Allow the STORAGE type to be specified by CREATE TABLE (Teodor Sigaev, Aleksander Alekseev) +Allow the STORAGE type to be specified by CREATE TABLE (Teodor Sigaev, Aleksander Alekseev) -Previously only ALTER TABLE could control this +Previously only ALTER TABLE could control this. @@ -1603,11 +1602,11 @@ Author: Michael Paquier -Allow VACUUM and vacuumdb to only process TOAST tables (Nathan Bossart) +Allow VACUUM and vacuumdb to only process TOAST tables (Nathan Bossart) -This is accomplished by having VACUUM turn off PROCESS_MAIN or by vacuumdb using the --no-process-main option. +This is accomplished by having VACUUM turn off PROCESS_MAIN or by vacuumdb using the option. @@ -1618,11 +1617,11 @@ Author: Tom Lane -Add VACUUM options to skip or update all frozen statistics (Tom Lane, Nathan Bossart) +Add VACUUM options to skip or update all frozen statistics (Tom Lane, Nathan Bossart) -The options are SKIP_DATABASE_STATS and ONLY_DATABASE_STATS. +The options are SKIP_DATABASE_STATS and ONLY_DATABASE_STATS. @@ -1635,7 +1634,7 @@ Author: Michael Paquier -Change REINDEX DATABASE and REINDEX SYSTEM to no longer require an argument (Simon Riggs) +Change REINDEX DATABASE and REINDEX SYSTEM to no longer require an argument (Simon Riggs) @@ -1650,7 +1649,7 @@ Author: Dean Rasheed -Allow CREATE STATISTICS to generate a statistics name if none is specified (Simon Riggs) +Allow CREATE STATISTICS to generate a statistics name if none is specified (Simon Riggs) @@ -1674,7 +1673,7 @@ Allow non-decimal integer literals (Peter Eisentraut) -For example, 0x42F, 0o273, and 0b100101. +For example, 0x42F, 0o273, and 0b100101. @@ -1685,7 +1684,7 @@ Author: Dean Rasheed -Allow NUMERIC to process hexadecimal, octal, and binary integers of any size (Dean Rasheed) +Allow NUMERIC to process hexadecimal, octal, and binary integers of any size (Dean Rasheed) @@ -1715,7 +1714,7 @@ Author: Tom Lane -Accept the spelling "+infinity" in datetime input (Vik Fearing) +Accept the spelling +infinity in datetime input (Vik Fearing) @@ -1726,7 +1725,7 @@ Author: Tom Lane -Prevent the specification of "epoch" and "infinity" together with other fields in datetime strings (Joseph Koshakow) +Prevent the specification of epoch and infinity together with other fields in datetime strings (Joseph Koshakow) @@ -1738,7 +1737,7 @@ Author: Tom Lane Remove undocumented support for date input in the form -"YyearMmonthDday" +YyearMmonthDday (Joseph Koshakow) @@ -1752,7 +1751,7 @@ Author: Michael Paquier -Add functions pg_input_is_valid() and pg_input_error_info() to check for type conversion errors (Tom Lane) +Add functions pg_input_is_valid() and pg_input_error_info() to check for type conversion errors (Tom Lane) @@ -1772,7 +1771,7 @@ Author: Dean Rasheed -Allow subqueries in the FROM clause to omit aliases (Dean Rasheed) +Allow subqueries in the FROM clause to omit aliases (Dean Rasheed) @@ -1783,7 +1782,7 @@ Author: Peter Eisentraut -Add support for enhanced numeric literals in SQL/JSON paths (Peter Eisentraut) +Add support for enhanced numeric literals in SQL/JSON paths (Peter Eisentraut) @@ -1807,11 +1806,11 @@ Author: Alvaro Herrera -Add SQL/JSON constructors (Nikita Glukhov, Teodor Sigaev, Oleg Bartunov, Alexander Korotkov, Amit Langote) +Add SQL/JSON constructors (Nikita Glukhov, Teodor Sigaev, Oleg Bartunov, Alexander Korotkov, Amit Langote) -The new functions JSON_ARRAY(), JSON_ARRAYAGG(), JSON_OBJECT(), and JSON_OBJECTAGG() are part of the SQL standard. +The new functions JSON_ARRAY(), JSON_ARRAYAGG(), JSON_OBJECT(), and JSON_OBJECTAGG() are part of the SQL standard. @@ -1822,11 +1821,11 @@ Author: Alvaro Herrera -Add SQL/JSON object checks (Nikita Glukhov, Teodor Sigaev, Oleg Bartunov, Alexander Korotkov, Amit Langote, Andrew Dunstan) +Add SQL/JSON object checks (Nikita Glukhov, Teodor Sigaev, Oleg Bartunov, Alexander Korotkov, Amit Langote, Andrew Dunstan) -The IS JSON checks include checks for values, arrays, objects, scalars, and unique keys. +The IS JSON checks include checks for values, arrays, objects, scalars, and unique keys. @@ -1837,7 +1836,7 @@ Author: John Naylor -Allow JSON string parsing to use vector operations (John Naylor) +Allow JSON string parsing to use vector operations (John Naylor) @@ -1848,7 +1847,7 @@ Author: Tom Lane -Improve the handling of full text highlighting function ts_headline() for OR and NOT expressions (Tom Lane) +Improve the handling of full text highlighting function ts_headline() for OR and NOT expressions (Tom Lane) @@ -1859,11 +1858,11 @@ Author: Tom Lane -Add functions to add, subtract, and generate timestamptz values in a specified time zone (Przemyslaw Sztoch, Gurjeet Singh) +Add functions to add, subtract, and generate timestamptz values in a specified time zone (Przemyslaw Sztoch, Gurjeet Singh) -The functions are date_add(), date_subtract(), and generate_series(). +The functions are date_add(), date_subtract(), and generate_series(). @@ -1874,7 +1873,7 @@ Author: Tom Lane -Change date_trunc(unit, timestamptz, time_zone) to be an immutable function (Przemyslaw Sztoch) +Change date_trunc(unit, timestamptz, time_zone) to be an immutable function (Przemyslaw Sztoch) @@ -1889,7 +1888,7 @@ Author: Michael Paquier -Add server variable SYSTEM_USER (Bertrand Drouvot) +Add server variable SYSTEM_USER (Bertrand Drouvot) @@ -1904,7 +1903,7 @@ Author: Tom Lane -Add functions array_sample() and array_shuffle() (Martin Kalcher) +Add functions array_sample() and array_shuffle() (Martin Kalcher) @@ -1915,7 +1914,7 @@ Author: Peter Eisentraut -Add aggregate function ANY_VALUE() which returns any value from a set (Vik Fearing) +Add aggregate function ANY_VALUE() which returns any value from a set (Vik Fearing) @@ -1926,7 +1925,7 @@ Author: Tom Lane -Add function random_normal() to supply normally-distributed random numbers (Paul Ramsey) +Add function random_normal() to supply normally-distributed random numbers (Paul Ramsey) @@ -1937,7 +1936,7 @@ Author: Dean Rasheed -Add error function erf() and its complement erfc() (Dean Rasheed) +Add error function erf() and its complement erfc() (Dean Rasheed) @@ -1948,7 +1947,7 @@ Author: Dean Rasheed -Improve the accuracy of numeric power() for integer exponents (Dean Rasheed) +Improve the accuracy of numeric power() for integer exponents (Dean Rasheed) @@ -1959,7 +1958,7 @@ Author: Tom Lane -Add XMLSERIALIZE() option INDENT to pretty-print its output (Jim Jones) +Add XMLSERIALIZE() option INDENT to pretty-print its output (Jim Jones) @@ -1970,11 +1969,11 @@ Author: Jeff Davis -Change pg_collation_actual_version() to return a reasonable value for the default collation (Jeff Davis) +Change pg_collation_actual_version() to return a reasonable value for the default collation (Jeff Davis) -Previously it returned NULL. +Previously it returned NULL. @@ -1985,7 +1984,7 @@ Author: Tom Lane -Allow pg_read_file() and pg_read_binary_file() to ignore missing files (Kyotaro Horiguchi) +Allow pg_read_file() and pg_read_binary_file() to ignore missing files (Kyotaro Horiguchi) @@ -1996,7 +1995,7 @@ Author: Peter Eisentraut -Add the byte specification ('B') to pg_size_bytes() (Peter Eisentraut) +Add byte specification (B) to pg_size_bytes() (Peter Eisentraut) @@ -2007,7 +2006,7 @@ Author: Tom Lane -Allow to_reg* functions to accept numeric OIDs as input (Tom Lane) +Allow to_reg* functions to accept numeric OIDs as input (Tom Lane) @@ -2027,11 +2026,11 @@ Author: Tom Lane -Add the ability to get the current function's OID in PL/pgSQL (Pavel Stehule) +Add the ability to get the current function's OID in PL/pgSQL (Pavel Stehule) -This is accomplished with GET DIAGNOSTICS variable = PG_ROUTINE_OID. +This is accomplished with GET DIAGNOSTICS variable = PG_ROUTINE_OID. @@ -2051,7 +2050,7 @@ Author: Michael Paquier -Add libpq connection option require_auth to specify a list of acceptable authentication methods (Jacob Champion) +Add libpq connection option to specify a list of acceptable authentication methods (Jacob Champion) @@ -2068,11 +2067,11 @@ Author: Fujii Masao -Allow multiple libpq-specified hosts to be randomly selected (Jelte Fennema) +Allow multiple libpq-specified hosts to be randomly selected (Jelte Fennema) -This is enabled with "load_balance_hosts=random". This can be used for load balancing. +This is enabled with load_balance_hosts=random and can be used for load balancing. @@ -2083,11 +2082,11 @@ Author: Michael Paquier -Add libpq option sslcertmode to control transmission of the client certificate (Jacob Champion) +Add libpq option to control transmission of the client certificate (Jacob Champion) -The option values are "disable", "allow", and "require". +The option values are disable, allow, and require. @@ -2098,11 +2097,11 @@ Author: Daniel Gustafsson -Allow libpq to use the system certificate pool for certificate verification (Jacob Champion, Thomas Habets) +Allow libpq to use the system certificate pool for certificate verification (Jacob Champion, Thomas Habets) -This is enabled with sslrootcert=system, which also enables sslmode=verify-full. +This is enabled with sslrootcert=system, which also enables sslmode=verify-full. @@ -2122,11 +2121,11 @@ Author: Tom Lane -Allow ECPG variable declarations to use typedef names that match unreserved SQL keywords (Tom Lane) +Allow ECPG variable declarations to use typedef names that match unreserved SQL keywords (Tom Lane) -This change does prevent keywords which match C typedef names from being processed as keywords in later EXEC SQL blocks. +This change does prevent keywords which match C typedef names from being processed as keywords in later EXEC SQL blocks. @@ -2144,11 +2143,11 @@ Author: Andrew Dunstan -Allow psql to control the maximum width of header lines in expanded format (Platon Pronko) +Allow psql to control the maximum width of header lines in expanded format (Platon Pronko) -This is controlled by xheader_width. +This is controlled by . @@ -2161,11 +2160,11 @@ Author: Tom Lane -Allow psql's access privilege commands to show system objects (Nathan Bossart, Pavel Luzanov) +Allow psql's access privilege commands to show system objects (Nathan Bossart, Pavel Luzanov) -The options are \dpS, \zS, and \drg. +The options are \dpS, \zS, and \drg. @@ -2176,7 +2175,7 @@ Author: Michael Paquier -Add "FOREIGN" designation to psql \d+ for foreign table children and partitions (Ian Lawrence Barwick) +Add FOREIGN designation to psql \d+ for foreign table children and partitions (Ian Lawrence Barwick) @@ -2187,11 +2186,11 @@ Author: Tom Lane -Prevent \df+ from showing function source code (Isaac Morland) +Prevent \df+ from showing function source code (Isaac Morland) -Function bodies are more easily viewed with \sf. +Function bodies are more easily viewed with \sf. @@ -2202,11 +2201,11 @@ Author: Peter Eisentraut -Allow psql to submit queries using the extended query protocol (Peter Eisentraut) +Allow psql to submit queries using the extended query protocol (Peter Eisentraut) -Passing arguments to such queries is done using the new psql \bind command. +Passing arguments to such queries is done using the new psql \bind command. @@ -2217,11 +2216,11 @@ Author: Tom Lane -Allow psql \watch to limit the number of executions (Andrey Borodin) +Allow psql \watch to limit the number of executions (Andrey Borodin) -The \watch options can now be named. +The \watch options can now be named when specified. @@ -2232,7 +2231,7 @@ Author: Michael Paquier -Detect invalid values for psql \watch, and allow zero to specify no delay (Andrey Borodin) +Detect invalid values for psql \watch, and allow zero to specify no delay (Andrey Borodin) @@ -2245,12 +2244,12 @@ Author: Tom Lane -Allow psql scripts to obtain the exit status of shell commands and queries +Allow psql scripts to obtain the exit status of shell commands and queries (Corey Huinker, Tom Lane) -The new psql control variables are SHELL_ERROR and SHELL_EXIT_CODE. +The new psql control variables are SHELL_ERROR and SHELL_EXIT_CODE. @@ -2283,7 +2282,7 @@ Author: Amit Kapila -Various psql tab completion improvements (Vignesh C, Aleksander Alekseev, Dagfinn Ilmari Mannsåker, Shi Yu, Michael Paquier, Ken Kato, Peter Smith) +Various psql tab completion improvements (Vignesh C, Aleksander Alekseev, Dagfinn Ilmari Mannsåker, Shi Yu, Michael Paquier, Ken Kato, Peter Smith) @@ -2303,11 +2302,11 @@ Author: Tom Lane -Add pg_dump control of dumping child tables and partitions (Gilles Darold) +Add pg_dump control of dumping child tables and partitions (Gilles Darold) -The new options are --table-and-children, --exclude-table-and-children, and --exclude-table-data-and-children. +The new options are , , and . @@ -2321,7 +2320,7 @@ Author: Tomas Vondra -Add LZ4 and Zstandard compression to pg_dump (Georgios Kokolatos, Justin Pryzby) +Add LZ4 and Zstandard compression to pg_dump (Georgios Kokolatos, Justin Pryzby) @@ -2332,7 +2331,7 @@ Author: Tomas Vondra -Allow pg_dump and pg_basebackup to use "long" mode for compression (Justin Pryzby) +Allow pg_dump and pg_basebackup to use long mode for compression (Justin Pryzby) @@ -2343,11 +2342,11 @@ Author: Michael Paquier -Improve pg_dump to accept a more consistent compression syntax (Georgios Kokolatos) +Improve pg_dump to accept a more consistent compression syntax (Georgios Kokolatos) -Options like "--compress=gzip:5". +Options like . @@ -2369,11 +2368,11 @@ Author: Tom Lane 2023-03-22 -Add initdb option to set server variables for the duration of initdb and all future server starts (Tom Lane) +Add initdb option to set server variables for the duration of initdb and all future server starts (Tom Lane) -The option is "-c name=value". +The option is . @@ -2386,7 +2385,7 @@ Author: Nathan Bossart -Add options to createuser to control more user options (Shinya Kato) +Add options to createuser to control more user options (Shinya Kato) @@ -2403,12 +2402,12 @@ Author: Nathan Bossart -Deprecate createuser option --role (Nathan Bossart) +Deprecate createuser option (Nathan Bossart) -This option could be easily confused with new createuser role membership options, so option --member-of has been added with the same functionality. -The --role option can still be used. +This option could be easily confused with new createuser role membership options, so option has been added with the same functionality. +The option can still be used. @@ -2419,11 +2418,11 @@ Author: Andrew Dunstan -Allow control of vacuumdb schema processing (Gilles Darold) +Allow control of vacuumdb schema processing (Gilles Darold) -These are controlled by options --schema and --exclude-schema. +These are controlled by options and . @@ -2434,7 +2433,7 @@ Author: Tom Lane -Use new VACUUM options to improve the performance of vacuumdb (Tom Lane, Nathan Bossart) +Use new VACUUM options to improve the performance of vacuumdb (Tom Lane, Nathan Bossart) @@ -2445,7 +2444,7 @@ Author: Jeff Davis -Have pg_upgrade set the new cluster's locale and encoding (Jeff Davis) +Have pg_upgrade set the new cluster's locale and encoding (Jeff Davis) @@ -2460,11 +2459,11 @@ Author: Peter Eisentraut -Add pg_upgrade option to specify the default transfer mode (Peter Eisentraut) +Add pg_upgrade option to specify the default transfer mode (Peter Eisentraut) -The option is --copy. +The option is . @@ -2475,11 +2474,11 @@ Author: Michael Paquier -Improve pg_basebackup to accept numeric compression options (Georgios Kokolatos, Michael Paquier) +Improve pg_basebackup to accept numeric compression options (Georgios Kokolatos, Michael Paquier) -Options like "--compress=server-5" are now supported. +Options like are now supported. @@ -2490,7 +2489,7 @@ Author: Robert Haas -Fix pg_basebackup to handle tablespaces stored in the PGDATA directory (Robert Haas) +Fix pg_basebackup to handle tablespaces stored in the PGDATA directory (Robert Haas) @@ -2501,7 +2500,7 @@ Author: Michael Paquier -Add pg_waldump option --save-fullpage to dump full page images (David Christensen) +Add pg_waldump option to dump full page images (David Christensen) @@ -2512,7 +2511,7 @@ Author: Peter Eisentraut -Allow pg_waldump options -t/--timeline to accept hexadecimal values (Peter Eisentraut) +Allow pg_waldump options / to accept hexadecimal values (Peter Eisentraut) @@ -2523,7 +2522,7 @@ Author: Michael Paquier -Add support for progress reporting to pg_verifybackup (Masahiko Sawada) +Add support for progress reporting to pg_verifybackup (Masahiko Sawada) @@ -2536,11 +2535,11 @@ Author: Heikki Linnakangas -Allow pg_rewind to properly track timeline changes (Heikki Linnakangas) +Allow pg_rewind to properly track timeline changes (Heikki Linnakangas) -Previously if pg_rewind was run after a timeline switch but before a checkpoint was issued, it might incorrectly determine that a rewind was unnecessary. +Previously if pg_rewind was run after a timeline switch but before a checkpoint was issued, it might incorrectly determine that a rewind was unnecessary. @@ -2551,11 +2550,11 @@ Author: Daniel Gustafsson -Have pg_receivewal and pg_recvlogical cleanly exit on SIGTERM (Christoph Berg) +Have pg_receivewal and pg_recvlogical cleanly exit on SIGTERM (Christoph Berg) -This signal is often used by systemd. +This signal is often used by systemd. @@ -2575,11 +2574,11 @@ Author: Jeff Davis -Build ICU support by default (Jeff Davis) +Build ICU support by default (Jeff Davis) -This removes build flag --with-icu and adds flag --without-icu. +This removes build flag and adds flag . @@ -2590,7 +2589,7 @@ Author: John Naylor -Add support for SSE2 (Streaming SIMD Extensions 2) vector operations on x86-64 architectures (John Naylor) +Add support for SSE2 (Streaming SIMD Extensions 2) vector operations on x86-64 architectures (John Naylor) @@ -2601,7 +2600,7 @@ Author: John Naylor -Add support for Advanced SIMD (Single Instruction Multiple Data) (NEON) instructions on ARM architectures (Nathan Bossart) +Add support for Advanced SIMD (Single Instruction Multiple Data) (NEON) instructions on ARM architectures (Nathan Bossart) @@ -2612,11 +2611,11 @@ Author: Michael Paquier -Have Windows binaries built with MSVC use RandomizedBaseAddress (ASLR) (Michael Paquier) +Have Windows binaries built with MSVC use RandomizedBaseAddress (ASLR) (Michael Paquier) -This was already enabled on MinGW builds. +This was already enabled on MinGW builds. @@ -2633,7 +2632,7 @@ Prevent extension libraries from exporting their symbols by default (Andres Freu -Functions that need to be called from the core backend or other extensions must now be explicitly marked PGDLLEXPORT. +Functions that need to be called from the core backend or other extensions must now be explicitly marked PGDLLEXPORT. @@ -2644,11 +2643,11 @@ Author: Michael Paquier -Require Windows 10 or newer versions (Michael Paquier, Juan José Santamaría Flecha) +Require Windows 10 or newer versions (Michael Paquier, Juan José Santamaría Flecha) -Previously Windows Vista and Windows XP were supported. +Previously Windows Vista and Windows XP were supported. @@ -2659,7 +2658,7 @@ Author: John Naylor -Require Perl version 5.14 or later (John Naylor) +Require Perl version 5.14 or later (John Naylor) @@ -2670,7 +2669,7 @@ Author: John Naylor -Require Bison version 2.3 or later (John Naylor) +Require Bison version 2.3 or later (John Naylor) @@ -2681,7 +2680,7 @@ Author: John Naylor -Require Flex version 2.5.35 or later (John Naylor) +Require Flex version 2.5.35 or later (John Naylor) @@ -2692,7 +2691,7 @@ Author: Stephen Frost -Require MIT Kerberos for GSSAPI support (Stephen Frost) +Require MIT Kerberos for GSSAPI support (Stephen Frost) @@ -2703,7 +2702,7 @@ Author: Michael Paquier -Remove support for Visual Studio 2013 (Michael Paquier) +Remove support for Visual Studio 2013 (Michael Paquier) @@ -2714,7 +2713,7 @@ Author: Thomas Munro -Remove support for HP-UX (Thomas Munro) +Remove support for HP-UX (Thomas Munro) @@ -2725,7 +2724,7 @@ Author: Thomas Munro -Remove support for HP/Intel Itanium (Thomas Munro) +Remove support for HP/Intel Itanium (Thomas Munro) @@ -2738,7 +2737,7 @@ Author: Thomas Munro -Remove support for M68K, M88K, M32R, and SuperH CPU architectures (Thomas Munro) +Remove support for M68K, M88K, M32R, and SuperH CPU architectures (Thomas Munro) @@ -2749,11 +2748,11 @@ Author: Michael Paquier -Remove libpq support for SCM credential authentication (Michael Paquier) +Remove libpq support for SCM credential authentication (Michael Paquier) -Backend support for this authentication method was removed in PostgreSQL 9.1. +Backend support for this authentication method was removed in PostgresSQL 9.1. @@ -2764,11 +2763,11 @@ Author: Andres Freund -Add meson build system (Andres Freund, Nazir Bilal Yavuz, Peter Eisentraut) +Add meson build system (Andres Freund, Nazir Bilal Yavuz, Peter Eisentraut) -This eventually will replace the Autoconf and Windows-based MSVC build systems. +This eventually will replace the Autoconf and Windows-based MSVC build systems. @@ -2779,11 +2778,11 @@ Author: Peter Eisentraut -Allow control of the location of the openssl binary used by the build system (Peter Eisentraut) +Allow control of the location of the openssl binary used by the build system (Peter Eisentraut) -Make finding openssl program a configure or meson option +Make finding openssl program a configure or meson option @@ -2794,11 +2793,11 @@ Author: Andres Freund -Add build option to allow testing of small segment sizes (Andres Freund) +Add build option to allow testing of small WAL segment sizes (Andres Freund) -The build options are --with-segsize-blocks and -Dsegsize_blocks. +The build options are and . @@ -2821,11 +2820,11 @@ Author: Andrew Dunstan -Add pgindent options (Andrew Dunstan) +Add pgindent options (Andrew Dunstan) -The new options are --show-diff, --silent-diff, --commit, and --help, and allow multiple --exclude options. Also require the typedef file to be explicitly specified. Options --code-base and --build were +The new options are , , , and , and allow multiple options. Also require the typedef file to be explicitly specified. Options and were also removed. @@ -2837,7 +2836,7 @@ Author: Tom Lane -Add pg_bsd_indent source code to the main tree (Tom Lane) +Add pg_bsd_indent source code to the main tree (Tom Lane) @@ -2848,7 +2847,7 @@ Author: Tatsuo Ishii -Improve make_ctags and make_etags (Yugo Nagata) +Improve make_ctags and make_etags (Yugo Nagata) @@ -2859,7 +2858,7 @@ Author: Peter Eisentraut -Adjust pg_attribute columns for efficiency (Peter Eisentraut) +Adjust pg_attribute columns for efficiency (Peter Eisentraut) @@ -2890,7 +2889,7 @@ Author: Tom Lane -Add support for Daitch-Mokotoff Soundex to fuzzystrmatch (Dag Lem) +Add support for Daitch-Mokotoff Soundex to fuzzystrmatch (Dag Lem) @@ -2901,11 +2900,11 @@ Author: Michael Paquier -Allow auto_explain to log values passed to parameterized statements (Dagfinn Ilmari Mannsåker) +Allow auto_explain to log values passed to parameterized statements (Dagfinn Ilmari Mannsåker) -This affects queries using server-side PREPARE/EXECUTE and client-side parse/bind. Logging is controlled by auto_explain.log_parameter_max_length; by default query parameters will +This affects queries using server-side PREPARE/EXECUTE and client-side parse/bind. Logging is controlled by auto_explain.log_parameter_max_length; by default query parameters will be logged with no length restriction. @@ -2917,11 +2916,11 @@ Author: Michael Paquier -Have auto_explain's log_verbose mode honor the value of compute_query_id (Atsushi Torikoshi) +Have auto_explain's mode honor the value of compute_query_id (Atsushi Torikoshi) -Previously even if compute_query_id was enabled, log_verbose was not showing the query identifier. +Previously even if compute_query_id was enabled, was not showing the query identifier. @@ -2932,7 +2931,7 @@ Author: Andrew Dunstan -Change the maximum length of ltree labels from 256 to 1000 and allow hyphens (Garen Torikian) +Change the maximum length of ltree labels from 256 to 1000 and allow hyphens (Garen Torikian) @@ -2943,11 +2942,11 @@ Author: Michael Paquier -Have pg_stat_statements normalize constants used in utility commands (Michael Paquier) +Have pg_stat_statements normalize constants used in utility commands (Michael Paquier) -Previously constants appeared instead of placeholders, e.g., $1. +Previously constants appeared instead of placeholders, e.g., $1. @@ -2964,7 +2963,7 @@ Author: Peter Geoghegan -Add pg_walinspect function pg_get_wal_block_info() to report WAL block information (Michael Paquier, Melanie Plageman, Bharath Rupireddy) +Add pg_walinspect function pg_get_wal_block_info() to report WAL block information (Michael Paquier, Melanie Plageman, Bharath Rupireddy) @@ -2975,11 +2974,11 @@ Author: Michael Paquier -Change how pg_walinspect functions pg_get_wal_records_info() and pg_get_wal_stats() interpret ending LSNs (Bharath Rupireddy) +Change how pg_walinspect functions pg_get_wal_records_info() and pg_get_wal_stats() interpret ending LSNs (Bharath Rupireddy) -Previously ending LSNs which represent nonexistent WAL locations would generate an error, while they will now be interpreted as the end of the WAL. +Previously ending LSNs which represent nonexistent WAL locations would generate an error, while they will now be interpreted as the end of the WAL. @@ -2996,7 +2995,7 @@ Author: Peter Geoghegan -Add detailed descriptions of WAL records in pg_walinspect and pg_waldump (Melanie Plageman, Peter Geoghegan) +Add detailed descriptions of WAL records in pg_walinspect and pg_waldump (Melanie Plageman, Peter Geoghegan) @@ -3007,11 +3006,11 @@ Author: Tom Lane -Add pageinspect function bt_multi_page_stats() to report statistics on multiple pages (Hamid Akhtar) +Add pageinspect function bt_multi_page_stats() to report statistics on multiple pages (Hamid Akhtar) -This is similar to bt_page_stats() except it can report on a range of pages. +This is similar to bt_page_stats() except it can report on a range of pages. @@ -3022,7 +3021,7 @@ Author: Tom Lane -Add empty range output column to pageinspect function brin_page_items() (Tomas Vondra) +Add empty range output column to pageinspect function brin_page_items() (Tomas Vondra) @@ -3048,7 +3047,7 @@ Author: Michael Paquier -Correct inaccurate pg_stat_statements row tracking extended query protocol statements (Sami Imseih) +Correct inaccurate pg_stat_statements row tracking extended query protocol statements (Sami Imseih) @@ -3059,7 +3058,7 @@ Author: Tom Lane -Add pg_buffercache function pg_buffercache_usage_counts() to report usage totals (Nathan Bossart) +Add pg_buffercache function pg_buffercache_usage_counts() to report usage totals (Nathan Bossart) @@ -3070,7 +3069,7 @@ Author: Andres Freund -Add pg_buffercache function pg_buffercache_summary() to report summarized buffer statistics (Melih Mutlu) +Add pg_buffercache function pg_buffercache_summary() to report summarized buffer statistics (Melih Mutlu) @@ -3081,7 +3080,7 @@ Author: Tom Lane -Allow the schemas of required extensions to be referenced in extension scripts using the new syntax @extschema:referenced_extension_name@ (Regina Obe) +Allow the schemas of required extensions to be referenced in extension scripts using the new syntax @extschema:referenced_extension_name@ (Regina Obe) @@ -3092,11 +3091,11 @@ Author: Tom Lane -Allow required extensions to be marked as non-relocatable using "no_relocate" (Regina Obe) +Allow required extensions to be marked as non-relocatable using no_relocate (Regina Obe) -This allows @extschema:referenced_extension_name@ to be treated as a constant for the lifetime of the extension. +This allows @extschema:referenced_extension_name@ to be treated as a constant for the lifetime of the extension. @@ -3114,11 +3113,11 @@ Author: Etsuro Fujita -Allow postgres_fdw to do aborts in parallel (Etsuro Fujita) +Allow postgres_fdw to do aborts in parallel (Etsuro Fujita) -This is enabled with postgres_fdw option "parallel_abort". +This is enabled with postgres_fdw option . @@ -3129,11 +3128,11 @@ Author: Tomas Vondra -Make ANALYZE on foreign postgres_fdw tables more efficient (Tomas Vondra) +Make ANALYZE on foreign postgres_fdw tables more efficient (Tomas Vondra) -The postgres_fdw option analyze_sampling controls the sampling method. +The postgres_fdw option controls the sampling method. @@ -3144,7 +3143,7 @@ Author: Tom Lane -Restrict shipment of reg* type constants in postgres_fdw to those referencing built-in objects or extensions marked as shippable (Tom Lane) +Restrict shipment of reg* type constants in postgres_fdw to those referencing built-in objects or extensions marked as shippable (Tom Lane) @@ -3155,7 +3154,7 @@ Author: Andres Freund -Have postgres_fdw and dblink handle interrupts during connection establishment (Andres Freund) +Have postgres_fdw and dblink handle interrupts during connection establishment (Andres Freund)