You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve autovacuum's analyze of partitioned tables (Yuzuko Hosoya)
451
+
Autovacuum now analyzes partitioned tables (Yuzuko Hosoya)
467
452
</para>
468
453
469
454
<para>
@@ -538,7 +523,7 @@ Add long-running queries to be canceled if the client disconnects (Sergey Cherka
538
523
</para>
539
524
540
525
<para>
541
-
The server variable check_client_connection_interval allows supporting operating systems, e.g., Linux, to automatically cancel queries by disconnected clients.
526
+
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)
786
+
Allow a query referencing multiple foreign tables to perform foreign table scans in parallel (Robert Haas, Kyotaro Horiguchi, Thomas Munro, Etsuro Fujita)
776
787
</para>
777
788
778
789
<para>
@@ -817,7 +828,7 @@ Author: David Rowley <drowley@postgresql.org>
817
828
-->
818
829
819
830
<para>
820
-
Improve the performance of parallel sequential scans (Thomas Munro, David Rowley)
831
+
Improve the I/O performance of parallel sequential scans (Thomas Munro, David Rowley)
821
832
</para>
822
833
823
834
<para>
@@ -913,6 +924,10 @@ Author: Bruce Momjian <bruce@momjian.us>
913
924
<para>
914
925
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)
915
926
</para>
927
+
928
+
<para>
929
+
A query id computed by an extension will also be displayed.
930
+
</para>
916
931
</listitem>
917
932
918
933
<listitem>
@@ -1066,7 +1081,6 @@ Add system view pg_stat_replication_slots to report replication slot activity (S
1066
1081
1067
1082
<para>
1068
1083
Function pg_stat_reset_replication_slot() resets slot statistics.
1069
-
THIS IS LOGICAL ONLY, BUT NO "LOGICAL" IN THE NAME? IS "ACTIVITY" THE RIGHT WORD?
1070
1084
</para>
1071
1085
</listitem>
1072
1086
@@ -1136,7 +1150,7 @@ Author: Andrew Dunstan <andrew@dunslane.net>
1136
1150
-->
1137
1151
1138
1152
<para>
1139
-
Allow more than the common name (CN) to be matched for client certificate authentication (Andrew Dunstan)
1153
+
Allow the certificate's distinguished name (DN) to be matched for client certificate authentication (Andrew Dunstan)
1140
1154
</para>
1141
1155
1142
1156
<para>
@@ -1415,7 +1429,9 @@ Allow file system sync at the start of crash recovery on Linux (Thomas Munro)
1415
1429
</para>
1416
1430
1417
1431
<para>
1418
-
This allows for faster recovery on systems with many database files and is enabled via recovery_init_sync_method,
1432
+
By default, Postgres opens and fsyncs every data file at the start of crash recovery.
1433
+
This new setting, recovery_init_sync_method=syncfs, instead syncs each filesystem used by the database cluster.
1434
+
This allows for faster recovery on systems with many database files.
1419
1435
</para>
1420
1436
</listitem>
1421
1437
@@ -2274,7 +2290,7 @@ Author: David Rowley <drowley@postgresql.org>
2274
2290
-->
2275
2291
2276
2292
<para>
2277
-
Allow efficient retrieval of heap rows via tid (Edmund Horner, David Rowley)
2293
+
Allow efficient heap scanning of a range of tids (Edmund Horner, David Rowley)
2278
2294
</para>
2279
2295
2280
2296
<para>
@@ -2466,7 +2482,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
2466
2482
-->
2467
2483
2468
2484
<para>
2469
-
Make built-in type coercion functions as leakproof where possible (Tom Lane)
2485
+
Mark built-in type coercion functions as leakproof where possible (Tom Lane)
2470
2486
</para>
2471
2487
2472
2488
<para>
@@ -2711,11 +2727,11 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
2711
2727
-->
2712
2728
2713
2729
<para>
2714
-
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)
2730
+
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)
2715
2731
</para>
2716
2732
2717
2733
<para>
2718
-
The \ef and \ev commands also now have this behavior. DOCS SAY BUFFER IS CLEARED.
2734
+
Previously, such edits would still execute the editor contents.
0 commit comments