Improve autovacuum's analyze of partitioned tables (Yuzuko Hosoya)
Autovacuum now analyzes partitioned tables (Yuzuko Hosoya)
</para>
<para>
...
...
@@ -538,7 +523,7 @@ Add long-running queries to be canceled if the client disconnects (Sergey Cherka
</para>
<para>
The server variable check_client_connection_interval allows supporting operating systems, e.g., Linux, to automatically cancel queries by disconnected clients.
The server variable client_connection_check_interval allows supporting operating systems, e.g., Linux, to automatically cancel queries by disconnected clients.
Allow multiple foreign table scans to be run in parallel (Robert Haas, Kyotaro Horiguchi, Thomas Munro, Etsuro Fujita)
Allow a query referencing multiple foreign tables to perform foreign table scans in parallel (Robert Haas, Kyotaro Horiguchi, Thomas Munro, Etsuro Fujita)
</para>
<para>
...
...
@@ -817,7 +828,7 @@ Author: David Rowley <drowley@postgresql.org>
-->
<para>
Improve the performance of parallel sequential scans (Thomas Munro, David Rowley)
Improve the I/O performance of parallel sequential scans (Thomas Munro, David Rowley)
</para>
<para>
...
...
@@ -913,6 +924,10 @@ Author: Bruce Momjian <bruce@momjian.us>
<para>
If server variable compute_query_id is enabled, display the hash in pg_stat_activity, EXPLAIN VERBOSE, csvlog, and optionally in log_line_prefix (Julien Rouhaud)
</para>
<para>
A query id computed by an extension will also be displayed.
</para>
</listitem>
<listitem>
...
...
@@ -1066,7 +1081,6 @@ Add system view pg_stat_replication_slots to report replication slot activity (S
<para>
Function pg_stat_reset_replication_slot() resets slot statistics.
THIS IS LOGICAL ONLY, BUT NO "LOGICAL" IN THE NAME? IS "ACTIVITY" THE RIGHT WORD?
</para>
</listitem>
...
...
@@ -1136,7 +1150,7 @@ Author: Andrew Dunstan <andrew@dunslane.net>
-->
<para>
Allow more than the common name (CN) to be matched for client certificate authentication (Andrew Dunstan)
Allow the certificate's distinguished name (DN) to be matched for client certificate authentication (Andrew Dunstan)
</para>
<para>
...
...
@@ -1415,7 +1429,9 @@ Allow file system sync at the start of crash recovery on Linux (Thomas Munro)
</para>
<para>
This allows for faster recovery on systems with many database files and is enabled via recovery_init_sync_method,
By default, Postgres opens and fsyncs every data file at the start of crash recovery.
This new setting, recovery_init_sync_method=syncfs, instead syncs each filesystem used by the database cluster.
This allows for faster recovery on systems with many database files.
</para>
</listitem>
...
...
@@ -2274,7 +2290,7 @@ Author: David Rowley <drowley@postgresql.org>
-->
<para>
Allow efficient retrieval of heap rows via tid (Edmund Horner, David Rowley)
Allow efficient heap scanning of a range of tids (Edmund Horner, David Rowley)
</para>
<para>
...
...
@@ -2466,7 +2482,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
-->
<para>
Make built-in type coercion functions as leakproof where possible (Tom Lane)
Mark built-in type coercion functions as leakproof where possible (Tom Lane)
</para>
<para>
...
...
@@ -2711,11 +2727,11 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
-->
<para>
When using \e in psql, if the buffer is not modified by the editor, ignore the editor contents and leave the buffer unchanged (Laurenz Albe)
When editing the previous query or a file with psql's \e, or using \ef and \ev, ignore the contents if the editor exits without saving (Laurenz Albe)
</para>
<para>
The \ef and \ev commands also now have this behavior. DOCS SAY BUFFER IS CLEARED.
Previously, such edits would still execute the editor contents.