Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d0bbf87

Browse files
committed
doc: PG 12 wording improvments
Reported-by: Justin Pryzby Discussion: https://postgr.es/m/20190510001335.GJ3925@telsasoft.com
1 parent 752f064 commit d0bbf87

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

doc/src/sgml/release-12.sgml

+15-15
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Do not allow multiple different recovery_target* specifications (Peter Eisentrau
119119
</para>
120120

121121
<para>
122-
Previously multiple different recovery_target* variables could be specified, and the last one specified was honored. Now, only one can be specified, though the same one can
122+
Previously, multiple different recovery_target* variables could be specified, and the last one specified was honored. Now, only one can be specified, though the same one can
123123
be specified multiple times and the last specification is honored.
124124
</para>
125125
</listitem>
@@ -131,7 +131,7 @@ Author: Peter Eisentraut <peter@eisentraut.org>
131131
-->
132132

133133
<para>
134-
Cause recovery to recover to the latest timeline by default (Peter Eisentraut)
134+
Cause recovery to advance to the latest timeline by default (Peter Eisentraut)
135135
</para>
136136

137137
<para>
@@ -204,7 +204,7 @@ Change XML functions like xpath() to never pretty-print their output (Tom Lane)
204204
</para>
205205

206206
<para>
207-
Previously this happened in some rare cases. ACCURATE? HOW TO GET PRETTY PRINT OUTPUT?
207+
Previously, this happened in some rare cases. ACCURATE? HOW TO GET PRETTY PRINT OUTPUT?
208208
</para>
209209
</listitem>
210210

@@ -226,7 +226,7 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
226226
-->
227227

228228
<para>
229-
Require pg_restore to use "-f -" to output the dump contents to stdout (Euler Taveira)
229+
Require specification of "-f -" to send the dump contents to stdout (Euler Taveira)
230230
</para>
231231

232232
<para>
@@ -400,7 +400,7 @@ Allow partitions bounds to be any expression (Kyotaro Horiguchi, Tom Lane, Amit
400400
</para>
401401

402402
<para>
403-
Expressions are evaluated at table partitioned table creation time. Previously only constants were allowed as partitions bounds.
403+
Expressions are evaluated at table partitioned table creation time. Previously, only constants were allowed as partitions bounds.
404404
</para>
405405
</listitem>
406406

@@ -531,7 +531,7 @@ Allow parallel query when in SERIALIZABLE isolation mode (Thomas Munro)
531531
</para>
532532

533533
<para>
534-
Previously parallelism was disabled when in this mode.
534+
Previously, parallelism was disabled when in this mode.
535535
</para>
536536
</listitem>
537537

@@ -824,7 +824,7 @@ Store statistics using the collation defined for each column (Tom Lane)
824824
</para>
825825

826826
<para>
827-
Previously the default collation was used for all statistics storage. This potentially gives better optimizer behavior for columns with non-default collations.
827+
Previously, the default collation was used for all statistics storage. This potentially gives better optimizer behavior for columns with non-default collations.
828828
</para>
829829
</listitem>
830830

@@ -1093,7 +1093,7 @@ Add tracking of global objects in system view pg_stat_database (Julien Rouhaud)
10931093
</para>
10941094

10951095
<para>
1096-
The system view row's datoid is reported as zero.
1096+
Global objects have a pg_stat_database.datoid value of zero.
10971097
</para>
10981098
</listitem>
10991099

@@ -1149,7 +1149,7 @@ Author: Peter Eisentraut <peter@eisentraut.org>
11491149
-->
11501150

11511151
<para>
1152-
Allow viewers of pg_stat_ssl to only see their own rows (Peter Eisentraut)
1152+
Restrict visibility of rows in pg_stat_ssl by unprivileged users (Peter Eisentraut)
11531153
</para>
11541154
</listitem>
11551155

@@ -1233,7 +1233,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
12331233
-->
12341234

12351235
<para>
1236-
Allow more comparisons with information_schema text columns to use indexes (Tom Lane)
1236+
Allow more use of indexes for text columns comparisons with information_schema columns (Tom Lane)
12371237
</para>
12381238
</listitem>
12391239

@@ -1297,7 +1297,7 @@ Author: Magnus Hagander <magnus@hagander.net>
12971297
-->
12981298

12991299
<para>
1300-
Allow the clientcert pg_hba.conf option to check the database user name matches the certificate common name (Julian Markwort, Marius Timmer)
1300+
Allow the clientcert pg_hba.conf option to check that the database user name matches the certificate common name (Julian Markwort, Marius Timmer)
13011301
</para>
13021302

13031303
<para>
@@ -1545,7 +1545,7 @@ Allow the streaming replication timeout to be set per connection (Tsunakawa Taka
15451545
</para>
15461546

15471547
<para>
1548-
Previously this could only be set cluster-wide.
1548+
Previously, this could only be set cluster-wide.
15491549
</para>
15501550
</listitem>
15511551

@@ -1840,7 +1840,7 @@ Use all column names when creating default foreign key constraint names (Peter E
18401840
</para>
18411841

18421842
<para>
1843-
Previously only the first column name was used.
1843+
Previously, only the first column name was used.
18441844
</para>
18451845
</listitem>
18461846

@@ -2344,7 +2344,7 @@ Allow control of log file rotation via pg_ctl (Kyotaro Horiguchi, Alexander Kuzm
23442344
</para>
23452345

23462346
<para>
2347-
Previously this was only possible via an SQL function or a process signal.
2347+
Previously, this was only possible via an SQL function or a process signal.
23482348
</para>
23492349
</listitem>
23502350

@@ -2729,7 +2729,7 @@ Properly honor WITH CHECK OPTION on views that reference postgres_fdw tables (Et
27292729

27302730
<para>
27312731
While CHECK OPTIONs on postgres_fdw tables are ignored (because the reference is foreign), views on such tables are considered local, so this release enforces CHECK
2732-
OPTIONs on them. Previously only INSERTs and UPDATEs with RETURNING clauses that returned CHECK OPTION values were validated.
2732+
OPTIONs on them. Previously, only INSERTs and UPDATEs with RETURNING clauses that returned CHECK OPTION values were validated.
27332733
</para>
27342734
</listitem>
27352735

0 commit comments

Comments
 (0)