@@ -89,7 +89,7 @@ Branch: REL9_6_STABLE [19648ce55] 2017-11-16 15:26:49 -0500
89
89
<para>
90
90
This is necessary to ensure that dead index entries get removed.
91
91
The old code got it backwards, allowing vacuum to skip the cleanup if
92
- some other process were running it concurrently, thus risking
92
+ some other process were running cleanup concurrently, thus risking
93
93
invalid entries being left behind in the index.
94
94
</para>
95
95
</listitem>
@@ -186,7 +186,7 @@ Branch: REL_10_STABLE [bdbf29aae] 2017-12-27 18:26:58 +0300
186
186
</para>
187
187
188
188
<para>
189
- This prevents poor behavior when rebuilding any hash indexes on the
189
+ This prevents poor behavior when rebuilding hash indexes on the
190
190
table, since those use the <structname>pg_class</structname>
191
191
statistics to govern the initial hash size.
192
192
</para>
@@ -361,7 +361,7 @@ Branch: REL9_4_STABLE [f68c49f86] 2018-01-05 12:17:10 -0300
361
361
<para>
362
362
Logical decoding may spill WAL records to disk for transactions
363
363
generating many WAL records. Normally these files are cleaned up
364
- after the commit or abort record arrives for the transaction ; but if
364
+ after the transaction's commit or abort record arrives; but if
365
365
no such record is ever seen, the removal code misbehaved.
366
366
</para>
367
367
</listitem>
@@ -413,8 +413,8 @@ Branch: master [d02974e32] 2017-12-29 16:28:32 +0100
413
413
Branch: REL_10_STABLE [b38c3d58e] 2017-12-29 16:22:43 +0100
414
414
-->
415
415
<para>
416
- Show walsenders that are sending base backups as active
417
- in <structname>pg_stat_activity</structname> (Magnus Hagander)
416
+ Show walsenders that are sending base backups as active in
417
+ the <structname>pg_stat_activity</structname> view (Magnus Hagander)
418
418
</para>
419
419
</listitem>
420
420
@@ -448,11 +448,8 @@ Branch: REL9_3_STABLE [69e5b1e9c] 2017-11-26 09:50:53 -0800
448
448
-->
449
449
<para>
450
450
Fix <function>has_sequence_privilege()</function> to
451
- support <literal>WITH GRANT OPTION</literal> tests (Joe Conway)
452
- </para>
453
-
454
- <para>
455
- This case was already handled by other privilege-testing functions.
451
+ support <literal>WITH GRANT OPTION</literal> tests,
452
+ as other privilege-testing functions do (Joe Conway)
456
453
</para>
457
454
</listitem>
458
455
@@ -544,9 +541,9 @@ Branch: REL_10_STABLE [1c77e9908] 2018-01-05 19:21:30 -0500
544
541
545
542
<para>
546
543
Given repeatedly-unlucky timing, a process attempting to awaken all
547
- waiters for a condition variable could loop indefinitely. This
548
- affects only parallel index scans and some operations on replication
549
- slots.
544
+ waiters for a condition variable could loop indefinitely. Due to the
545
+ limited usage of condition variables in v10, this affects only
546
+ parallel index scans and some operations on replication slots.
550
547
</para>
551
548
</listitem>
552
549
@@ -641,8 +638,8 @@ Branch: master [445dbd82a] 2017-11-28 12:15:38 -0500
641
638
Branch: REL_10_STABLE [dba6e75c1] 2017-11-28 12:19:19 -0500
642
639
-->
643
640
<para>
644
- Avoid unnecessary failure when no error queues are created during
645
- parallel query startup (Robert Haas)
641
+ Avoid unnecessary failure when no parallel workers can be obtained
642
+ during parallel query startup (Robert Haas)
646
643
</para>
647
644
</listitem>
648
645
@@ -795,7 +792,8 @@ Branch: REL9_3_STABLE [45bfef7fb] 2018-01-10 17:13:29 -0500
795
792
</para>
796
793
797
794
<para>
798
- These functions are stated to be Oracle(TM)-compatible, but
795
+ These functions are stated to
796
+ be <trademark class="registered">Oracle</trademark> compatible, but
799
797
they weren't exactly. In particular, there was a discrepancy in the
800
798
interpretation of a negative third parameter: Oracle thinks that a
801
799
negative value indicates the last place where the target substring can
@@ -823,7 +821,7 @@ Branch: REL9_3_STABLE [ef115621c] 2018-01-22 12:06:19 -0500
823
821
-->
824
822
<para>
825
823
Fix <application>pg_dump</application> to make ACL (permissions),
826
- security label , and comment entries reliably identifiable in archive
824
+ comment , and security label entries reliably identifiable in archive
827
825
output formats (Tom Lane)
828
826
</para>
829
827
@@ -832,7 +830,7 @@ Branch: REL9_3_STABLE [ef115621c] 2018-01-22 12:06:19 -0500
832
830
just the name of the associated object. Make it start with the object
833
831
type instead, bringing ACLs into line with the convention already used
834
832
for comment and security label archive entries. Also, fix the
835
- security label and comment entries for the whole database, if present,
833
+ comment and security label entries for the whole database, if present,
836
834
to make their tags start with <literal>DATABASE</literal> so that they
837
835
also follow this convention. This prevents false matches in code that
838
836
tries to identify large-object-related entries by seeing if the tag
@@ -858,7 +856,7 @@ Branch: REL9_5_STABLE [ea4cbf8f1] 2018-01-03 12:39:59 -0800
858
856
<para>
859
857
Rename <application>pg_rewind</application>'s
860
858
<function>copy_file_range</function> function to avoid conflict
861
- with new Linux system call (Andres Freund)
859
+ with new Linux system call of that name (Andres Freund)
862
860
</para>
863
861
864
862
<para>
@@ -1005,7 +1003,8 @@ Branch: REL9_3_STABLE [77b76fea9] 2017-11-17 12:47:44 -0500
1005
1003
infrastructure that's been deprecated for over a decade, and which no
1006
1004
longer works at all in macOS releases of the last couple of years.
1007
1005
Add a new subdirectory <filename>contrib/start-scripts/macos</filename>
1008
- containing scripts that use the newer launchd infrastructure.
1006
+ containing scripts that use the newer <application>launchd</application>
1007
+ infrastructure.
1009
1008
</para>
1010
1009
</listitem>
1011
1010
@@ -1105,7 +1104,7 @@ Branch: REL9_4_STABLE [19cf9e96a] 2017-11-12 13:03:29 -0800
1105
1104
Branch: REL9_3_STABLE [30e99efe8] 2017-11-12 13:05:55 -0800
1106
1105
-->
1107
1106
<para>
1108
- On Windows, avoid encoding-version -related crashes when emitting
1107
+ On Windows, avoid encoding-conversion -related crashes when emitting
1109
1108
messages very early in postmaster startup (Takayuki Tsunakawa)
1110
1109
</para>
1111
1110
</listitem>
0 commit comments