Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitcaa0f07

Browse files
committed
doc: Improve PG14 release notes
Mostly markup improvements.Reported-by: Justin PryzbyDiscussion:https://postgr.es/m/20210625230456.GP29179@telsasoft.comBackpatch-through: 14 only
1 parentcf1f545 commitcaa0f07

File tree

1 file changed

+43
-34
lines changed

1 file changed

+43
-34
lines changed

‎doc/src/sgml/release-14.sgml

Lines changed: 43 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@ Author: Michael Paquier <michael@paquier.xyz>
194194
</para>
195195

196196
<para>
197-
This was already disabled by default in previous Postgres releases,
198-
and most modern OpenSSL and <acronym>TLS</acronym> versions no
199-
longer support it.
197+
This was already disabled by default in previous
198+
<productname>PostgreSQL</productname> releases, and most modern
199+
OpenSSL and <acronym>TLS</acronym> versions nolonger support it.
200200
</para>
201201
</listitem>
202202

@@ -213,7 +213,8 @@ Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
213213
</para>
214214

215215
<para>
216-
This was last used as the default in Postgres 7.3 (year 2002).
216+
This was last used as the default in
217+
<productname>PostgreSQL</productname> 7.3 (year 2002).
217218
</para>
218219
</listitem>
219220

@@ -231,7 +232,7 @@ Author: Peter Eisentraut <peter@eisentraut.org>
231232

232233
<para>
233234
<function>EXTRACT(date)</function> now throws an error for units
234-
that are not part of the date data type.
235+
that are not part of the<type>date</type> data type.
235236
</para>
236237
</listitem>
237238

@@ -395,7 +396,8 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
395396
-->
396397

397398
<para>
398-
Improve handling of regular expression back-references (Tom Lane)
399+
Improve handling of regular expression <link
400+
linkend="posix-escape-sequences">back-references</link> (Tom Lane)
399401
</para>
400402

401403
<para>
@@ -430,7 +432,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
430432

431433
<para>
432434
Require <link linkend="runtime-config-custom">custom server
433-
variable</link> names to use onlycharacter which are valid for
435+
variable</link> names to use onlycharacters which are valid for
434436
unquoted <acronym>SQL</acronym> identifiers (Tom Lane)
435437
</para>
436438
</listitem>
@@ -481,7 +483,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
481483
-->
482484

483485
<para>
484-
Pass doubled quote marks in <xref linkend="ecpg"/>
486+
Pass doubled quote marks in <link linkend="ecpg">ecpg</link>
485487
<acronym>SQL</acronym> command strings literally (Tom Lane)
486488
</para>
487489

@@ -1164,7 +1166,8 @@ Author: David Rowley <drowley@postgresql.org>
11641166

11651167
<para>
11661168
This is useful if only a small percentage of rows is checked on
1167-
the inner side.
1169+
the inner side and is controlled by <xref
1170+
linkend="guc-enable-resultcache"/>.
11681171
</para>
11691172
</listitem>
11701173

@@ -1211,7 +1214,7 @@ Author: Etsuro Fujita <efujita@postgresql.org>
12111214
</para>
12121215

12131216
<para>
1214-
The<link
1217+
<link
12151218
linkend="postgres-fdw"><application>postgres_fdw</application></link>
12161219
supports these type of scans if <literal>async_capable</literal>
12171220
is set.
@@ -1614,8 +1617,9 @@ Author: Peter Eisentraut <peter@eisentraut.org>
16141617

16151618
<para>
16161619
This is controlled by server variable <xref
1617-
linkend="guc-ssl-crl-dir"/> and libpq connection option sslcrldir.
1618-
Previously only <acronym>CRL</acronym> files could be specified.
1620+
linkend="guc-ssl-crl-dir"/> and libpq connection option
1621+
<xref linkend='libpq-connect-sslcrldir'/>. Previously only
1622+
<acronym>CRL</acronym> files could be specified.
16191623
</para>
16201624
</listitem>
16211625

@@ -1859,8 +1863,9 @@ Author: Thomas Munro <tmunro@postgresql.org>
18591863
</para>
18601864

18611865
<para>
1862-
By default, Postgres opens and fsyncs every data file
1863-
at the start of crash recovery. This new setting, <xref
1866+
By default, <productname>PostgreSQL</productname>
1867+
opens and fsyncs every data file at the
1868+
start of crash recovery. This new setting, <xref
18641869
linkend="guc-recovery-init-sync-method"/><literal>=syncfs</literal>,
18651870
instead syncs each filesystem used by the database cluster.
18661871
This allows for faster recovery on systems with many database files.
@@ -2784,7 +2789,7 @@ Author: Peter Eisentraut <peter@eisentraut.org>
27842789
</para>
27852790

27862791
<para>
2787-
This is similar to how Unicode can be specified in literalstring.
2792+
This is similar to how Unicode can be specified in literalstrings.
27882793
</para>
27892794
</listitem>
27902795

@@ -2868,7 +2873,7 @@ Author: Peter Eisentraut <peter@eisentraut.org>
28682873
The new syntax is <literal>SUBSTRING(text SIMILAR pattern ESCAPE
28692874
escapechar)</literal>. The previous standard syntax was
28702875
<literal>SUBSTRING(text FROM pattern FOR escapechar)</literal>,
2871-
and is still supported byPostgres.
2876+
and is still supported by<productname>PostgreSQL</productname>.
28722877
</para>
28732878
</listitem>
28742879

@@ -2894,7 +2899,7 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
28942899
<para>
28952900
Add <link
28962901
linkend="posix-escape-sequences"><literal>[[:word:]]</literal></link>
2897-
as a character class to match\w (Tom Lane)
2902+
as a character class to match<literal>\w</literal> (Tom Lane)
28982903
</para>
28992904
</listitem>
29002905

@@ -3223,9 +3228,9 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
32233228
-->
32243229

32253230
<para>
3226-
Allow <application>psql</application>'s \df and \do commands to
3227-
specify functionandoperator argument types (Greg Sabino Mullane,
3228-
Tom Lane)
3231+
Allow <application>psql</application>'s<literal>\df</literal>
3232+
and<literal>\do</literal> commands to specify function and
3233+
operator argument types (Greg Sabino Mullane,Tom Lane)
32293234
</para>
32303235

32313236
<para>
@@ -3252,8 +3257,9 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
32523257
-->
32533258

32543259
<para>
3255-
Allow <application>psql</application>'s \dt and \di to show
3256-
<acronym>TOAST</acronym> tables and their indexes (Justin Pryzby)
3260+
Allow <application>psql</application>'s <literal>\dt</literal>
3261+
and <literal>\di</literal> to show <acronym>TOAST</acronym>
3262+
tables and their indexes (Justin Pryzby)
32573263
</para>
32583264
</listitem>
32593265

@@ -3264,8 +3270,8 @@ Author: Tomas Vondra <tomas.vondra@postgresql.org>
32643270
-->
32653271

32663272
<para>
3267-
Add <application>psql</application> command \dX to list extended
3268-
statistics objects (Tatsuro Yamada)
3273+
Add <application>psql</application> command<literal>\dX</literal>
3274+
to list extendedstatistics objects (Tatsuro Yamada)
32693275
</para>
32703276
</listitem>
32713277

@@ -3276,9 +3282,9 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
32763282
-->
32773283

32783284
<para>
3279-
Fix <application>psql</application>'s \dT to understand array
3280-
syntax and backend grammar aliases, like "int" for "integer"
3281-
(Greg Sabino Mullane, Tom Lane)
3285+
Fix <application>psql</application>'s<literal>\dT</literal> to
3286+
understand arraysyntax and backend grammar aliases, like "int"
3287+
for "integer"(Greg Sabino Mullane, Tom Lane)
32823288
</para>
32833289
</listitem>
32843290

@@ -3290,8 +3296,9 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
32903296

32913297
<para>
32923298
When editing the previous query or a file with
3293-
<application>psql</application>'s \e, or using \ef and \ev, ignore
3294-
the contents if the editor exits without saving (Laurenz Albe)
3299+
<application>psql</application>'s <literal>\e</literal>, or using
3300+
<literal>\ef</literal> and <literal>\ev</literal>, ignore the
3301+
contents if the editor exits without saving (Laurenz Albe)
32953302
</para>
32963303

32973304
<para>
@@ -3306,8 +3313,9 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
33063313
-->
33073314

33083315
<para>
3309-
Improve <application>psql</application>'s handling of \connect
3310-
with <option>-reuse-previous</option> (Tom Lane)
3316+
Improve <application>psql</application>'s handling of
3317+
<literal>\connect</literal> with <option>-reuse-previous</option>
3318+
(Tom Lane)
33113319
</para>
33123320

33133321
<para>
@@ -3414,7 +3422,7 @@ Author: Magnus Hagander <magnus@hagander.net>
34143422
Stop <link
34153423
linkend="pgupgrade"><application>pg_upgrade</application></link>
34163424
from creating <filename>analyze_new_cluster</filename> script
3417-
(Michael Paquier)
3425+
(Magnus Hagander)
34183426
</para>
34193427

34203428
<para>
@@ -3739,8 +3747,9 @@ Author: Peter Eisentraut <peter@eisentraut.org>
37393747
-->
37403748

37413749
<para>
3742-
Allow <function>pgstattuple_approx()</function> to report on
3743-
<acronym>TOAST</acronym> tables (Peter Eisentraut)
3750+
Allow <link
3751+
linkend="pgstattuple"><function>pgstattuple_approx()</function></link>
3752+
to report on <acronym>TOAST</acronym> tables (Peter Eisentraut)
37443753
</para>
37453754
</listitem>
37463755

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp