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
Copy file name to clipboardExpand all lines: doc/src/sgml/release-13.sgml
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
7
7
<formalpara>
8
8
<title>Release date:</title>
9
-
<para>2020-05-03</para>
9
+
<para>2020-XX-XX, CURRENT AS OF 2020-05-03</para>
10
10
</formalpara>
11
11
12
12
<sect2>
@@ -284,7 +284,7 @@ Allow BEFORE row-level triggers on partitioned tables (Álvaro Herrera)
284
284
</para>
285
285
286
286
<para>
287
-
These triggers cannot change the destination partition.
287
+
These triggers "cannot change which partition is the destination.
288
288
</para>
289
289
290
290
</listitem>
@@ -532,11 +532,11 @@ Author: Tomas Vondra <tomas.vondra@postgresql.org>
532
532
-->
533
533
534
534
<para>
535
-
Allow incremental sorting (James Coleman, Alexander Korotkov)
535
+
Implement incremental sorting (James Coleman, Alexander Korotkov)
536
536
</para>
537
537
538
538
<para>
539
-
If a result is already sorted by several keys, this allows for batch sorting of additional trailing keys because the previous keys are already equal. This is controlled by enable_incrementalsort.
539
+
If a result is already sorted by several leading keys, this allows for batch sorting of additional trailing keys because the previous keys are already equal. This is controlled by enable_incrementalsort.
540
540
</para>
541
541
542
542
</listitem>
@@ -566,7 +566,7 @@ Allow hash aggregation to use disk storage for large aggregation result sets (Je
566
566
</para>
567
567
568
568
<para>
569
-
Previously, hash aggregation was not used if it was expected to use more than work_mem memory. This is controlled by enable_hashagg_disk.
569
+
Previously, hash aggregation was avoided if it was expected to use more than work_mem memory. This is controlled by enable_hashagg_disk.
This new behavior sets pages as all-visible, allowing for index-only scans, and reduces the work necessary when the table needs to be frozen.
602
+
This new behavior allows pages to be set as all-visible, which then allows index-only scans, and reduces the work necessary when the table needs to be frozen.
603
603
</para>
604
604
605
605
</listitem>
@@ -627,7 +627,7 @@ Allow skipping of WAL for new tables and indexes if wal_level is 'minimal' (Noah
627
627
</para>
628
628
629
629
<para>
630
-
This is controlled by GUC wal_skip_threshold.
630
+
The WAL write amount where this happens is controlled by wal_skip_threshold.
Improve performance for truncation of very larger relations (Kirk Jamison)
666
+
Improve performance for truncation of very large relations (Kirk Jamison)
667
667
</para>
668
668
669
669
</listitem>
@@ -1147,7 +1147,7 @@ Allow streaming replication configuration settings to be changed by reload (Serg
1147
1147
</para>
1148
1148
1149
1149
<para>
1150
-
Previously, server restart was required to change primary_conninfo and primary_slot_name.
1150
+
Previously, a server restart was required to change primary_conninfo and primary_slot_name.
1151
1151
</para>
1152
1152
1153
1153
</listitem>
@@ -1354,7 +1354,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
1354
1354
-->
1355
1355
1356
1356
<para>
1357
-
Fix bugs in ALTER TABLE where later clauses overlap changes made by earlier clauses in the same command (Tom Lane)
1357
+
Fix bugs in ALTER TABLE when later clauses overlap changes made by earlier clauses in the same command (Tom Lane)
1358
1358
</para>
1359
1359
1360
1360
</listitem>
@@ -1565,7 +1565,7 @@ Add alternate version of jsonb_set with special NULL handling (Andrew Dunstan)
1565
1565
</para>
1566
1566
1567
1567
<para>
1568
-
The new function, jsonb_set_lax(), allows null new values to either set the specified key to JSON null, delete the key, raise exception, or ignore operation.
1568
+
The new function, jsonb_set_lax(), allows null new values to either set the specified key to JSON null, delete the key, raise exception, or ignore the operation.
1569
1569
IS 'return_target' CLEAR?
1570
1570
</para>
1571
1571
@@ -1967,7 +1967,7 @@ Allow \g and \gx to change any pset output options for a single command (Tom Lan
1967
1967
</para>
1968
1968
1969
1969
<para>
1970
-
This makes \gx equivalent to \g (expanded=on).
1970
+
This allows syntax like \g (expand=on), which is equivalent to \gx.
1971
1971
</para>
1972
1972
1973
1973
</listitem>
@@ -2181,7 +2181,7 @@ Allow pg_rewind to use the target cluster's restore_command to retrieve needed W
2181
2181
</para>
2182
2182
2183
2183
<para>
2184
-
This is enable using the -c/--restore-target-wal option.
2184
+
This is enabled using the -c/--restore-target-wal option.
2185
2185
</para>
2186
2186
2187
2187
</listitem>
@@ -2293,7 +2293,7 @@ Remove --adduser and --no-adduser from createuser (Alexander Lakhin)
2293
2293
</para>
2294
2294
2295
2295
<para>
2296
-
These long-supported options for this are called --superuser and --no-superuser.
2296
+
The long-supported options for this are called --superuser and --no-superuser.
0 commit comments