@@ -89,7 +89,7 @@ Branch: REL9_6_STABLE [19648ce55] 2017-11-16 15:26:49 -0500
8989 <para>
9090 This is necessary to ensure that dead index entries get removed.
9191 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
9393 invalid entries being left behind in the index.
9494 </para>
9595 </listitem>
@@ -186,7 +186,7 @@ Branch: REL_10_STABLE [bdbf29aae] 2017-12-27 18:26:58 +0300
186186 </para>
187187
188188 <para>
189- This prevents poor behavior when rebuilding any hash indexes on the
189+ This prevents poor behavior when rebuilding hash indexes on the
190190 table, since those use the <structname>pg_class</structname>
191191 statistics to govern the initial hash size.
192192 </para>
@@ -361,7 +361,7 @@ Branch: REL9_4_STABLE [f68c49f86] 2018-01-05 12:17:10 -0300
361361 <para>
362362 Logical decoding may spill WAL records to disk for transactions
363363 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
365365 no such record is ever seen, the removal code misbehaved.
366366 </para>
367367 </listitem>
@@ -413,8 +413,8 @@ Branch: master [d02974e32] 2017-12-29 16:28:32 +0100
413413Branch: REL_10_STABLE [b38c3d58e] 2017-12-29 16:22:43 +0100
414414-->
415415 <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)
418418 </para>
419419 </listitem>
420420
@@ -448,11 +448,8 @@ Branch: REL9_3_STABLE [69e5b1e9c] 2017-11-26 09:50:53 -0800
448448-->
449449 <para>
450450 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)
456453 </para>
457454 </listitem>
458455
@@ -544,9 +541,9 @@ Branch: REL_10_STABLE [1c77e9908] 2018-01-05 19:21:30 -0500
544541
545542 <para>
546543 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.
550547 </para>
551548 </listitem>
552549
@@ -641,8 +638,8 @@ Branch: master [445dbd82a] 2017-11-28 12:15:38 -0500
641638Branch: REL_10_STABLE [dba6e75c1] 2017-11-28 12:19:19 -0500
642639-->
643640 <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)
646643 </para>
647644 </listitem>
648645
@@ -795,7 +792,8 @@ Branch: REL9_3_STABLE [45bfef7fb] 2018-01-10 17:13:29 -0500
795792 </para>
796793
797794 <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
799797 they weren't exactly. In particular, there was a discrepancy in the
800798 interpretation of a negative third parameter: Oracle thinks that a
801799 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
823821-->
824822 <para>
825823 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
827825 output formats (Tom Lane)
828826 </para>
829827
@@ -832,7 +830,7 @@ Branch: REL9_3_STABLE [ef115621c] 2018-01-22 12:06:19 -0500
832830 just the name of the associated object. Make it start with the object
833831 type instead, bringing ACLs into line with the convention already used
834832 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,
836834 to make their tags start with <literal>DATABASE</literal> so that they
837835 also follow this convention. This prevents false matches in code that
838836 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
858856 <para>
859857 Rename <application>pg_rewind</application>'s
860858 <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)
862860 </para>
863861
864862 <para>
@@ -1005,7 +1003,8 @@ Branch: REL9_3_STABLE [77b76fea9] 2017-11-17 12:47:44 -0500
10051003 infrastructure that's been deprecated for over a decade, and which no
10061004 longer works at all in macOS releases of the last couple of years.
10071005 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.
10091008 </para>
10101009 </listitem>
10111010
@@ -1105,7 +1104,7 @@ Branch: REL9_4_STABLE [19cf9e96a] 2017-11-12 13:03:29 -0800
11051104Branch: REL9_3_STABLE [30e99efe8] 2017-11-12 13:05:55 -0800
11061105-->
11071106 <para>
1108- On Windows, avoid encoding-version -related crashes when emitting
1107+ On Windows, avoid encoding-conversion -related crashes when emitting
11091108 messages very early in postmaster startup (Takayuki Tsunakawa)
11101109 </para>
11111110 </listitem>
0 commit comments