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

Commitdb680fd

Browse files
committed
doc: remove xreflabels used in PG 13 relnotes
xreflabels were removed in a previous commitDiscussion:https://postgr.es/m/8315c0ca-7758-8823-fcb6-f37f9413e6b6@2ndquadrant.comBackpatch-through: 13 only
1 parentc046120 commitdb680fd

File tree

1 file changed

+85
-72
lines changed

1 file changed

+85
-72
lines changed

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

Lines changed: 85 additions & 72 deletions
Original file line numberDiff line numberDiff line change
@@ -338,10 +338,10 @@ Author: Peter Eisentraut <peter@eisentraut.org>
338338
partitioned tables can be published explicitly causing all partitions
339339
to be automatically published. Addition/removal of partitions from
340340
partitioned tables are automatically added/removed from publications.
341-
The <xref linkend="sql-createpublication"/> option
342-
<literal>publish_via_partition_root</literal> controls whether
343-
changes to partitions are published as their own or their
344-
ancestor's.
341+
The <link linkend="sql-createpublication"><command>CREATE
342+
PUBLICATION</command></link> option
343+
<literal>publish_via_partition_root</literal> controls whether changes
344+
to partitions are published as their own or theirancestor's.
345345
</para>
346346
</listitem>
347347

@@ -397,9 +397,11 @@ Author: Peter Geoghegan <pg@bowt.ie>
397397

398398
<para>
399399
This allows efficient btree indexing of low cardinality columns
400-
by storing duplicate keys only once. Users upgrading
401-
with <xref linkend="pgupgrade"/> will need to use <xref
402-
linkend="sql-reindex"/> to make use of this feature.
400+
by storing duplicate keys only once. Users upgrading with <link
401+
linkend="pgupgrade"><application>pg_upgrade</application></link>
402+
will need to use <link
403+
linkend="sql-reindex"><command>REINDEX</command></link> to make use
404+
of this feature.
403405
</para>
404406
</listitem>
405407

@@ -412,8 +414,8 @@ Author: Alexander Korotkov <akorotkov@postgresql.org>
412414
-->
413415

414416
<para>
415-
Allow <xref linkend="gist"/> and <xref
416-
linkend="spgist"/> indexes for <link
417+
Allow <link linkend="gist">GiST</link> and <link
418+
linkend="spgist">SP-GiST</link> indexes for <link
417419
linkend="datatype-line">box</link>/point distance lookups (Nikita
418420
Glukhov)
419421
</para>
@@ -426,9 +428,9 @@ Author: Alexander Korotkov <akorotkov@postgresql.org>
426428
-->
427429

428430
<para>
429-
Allow <xref linkend="gin"/> indexes to more efficiently handle
430-
<literal>NOT</literal> restrictions (Nikita Glukhov, Alexander
431-
Korotkov, Tom Lane, Julien Rouhaud)
431+
Allow <link linkend="gin"><acronym>GIN</acronym></link> indexes to
432+
more efficiently handle<literal>NOT</literal> restrictions (Nikita
433+
Glukhov, AlexanderKorotkov, Tom Lane, Julien Rouhaud)
432434
</para>
433435
</listitem>
434436

@@ -650,8 +652,8 @@ Author: David Rowley <drowley@postgresql.org>
650652
-->
651653

652654
<para>
653-
Allow inserts to trigger <xref linkend="autovacuum"/> activity
654-
(Laurenz Albe, Darafei Praliaskouski)
655+
Allow inserts to trigger <link linkend="autovacuum">autovacuum</link>
656+
activity(Laurenz Albe, Darafei Praliaskouski)
655657
</para>
656658

657659
<para>
@@ -714,9 +716,9 @@ Author: Fujii Masao <fujii@postgresql.org>
714716
-->
715717

716718
<para>
717-
Improve the performance when replaying <xref
718-
linkend="sql-dropdatabase"/> commands when many tablespaces are
719-
in use (Fujii Masao)
719+
Improve the performance when replaying <link
720+
linkend="sql-dropdatabase"><command>DROP DATABASE</command></link>
721+
commands when many tablespaces arein use (Fujii Masao)
720722
</para>
721723
</listitem>
722724

@@ -739,8 +741,9 @@ Author: Tomas Vondra <tomas.vondra@postgresql.org>
739741
-->
740742

741743
<para>
742-
Improve speed of <xref linkend="storage-toast"/> decompression and
743-
the retrieval of only the leading bytes of <acronym>TOAST</acronym>
744+
Improve speed of <link
745+
linkend="storage-toast"><acronym>TOAST</acronym></link> decompression
746+
and the retrieval of only the leading bytes of <acronym>TOAST</acronym>
744747
values (Binguo Bao, Andrey Borodin)
745748
</para>
746749

@@ -760,9 +763,9 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
760763
-->
761764

762765
<para>
763-
Improve performance of <xref
764-
linkend="sql-listen"/>/<command>NOTIFY</command> (Martijn van
765-
Oosterhout)
766+
Improve performance of <link
767+
linkend="sql-listen"><command>LISTEN</command></link>/<command>NOTIFY</command>
768+
(Martijn vanOosterhout)
766769
</para>
767770
</listitem>
768771

@@ -773,8 +776,8 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
773776
-->
774777

775778
<para>
776-
Improve the efficiency of removing duplicate <xref
777-
linkend="sql-notify"/> events (Tom Lane)
779+
Improve the efficiency of removing duplicate <link
780+
linkend="sql-notify"><command>NOTIFY</command></link> events (Tom Lane)
778781
</para>
779782
</listitem>
780783

@@ -821,9 +824,9 @@ Author: Amit Kapila <akapila@postgresql.org>
821824
-->
822825

823826
<para>
824-
Allow <xref linkend="sql-explain"/>,
825-
<xref linkend="auto-explain"/>, <xref
826-
linkend="autovacuum"/>, and <xref
827+
Allow <link linkend="sql-explain"><command>EXPLAIN</command></link>,
828+
<xref linkend="auto-explain"/>, <link
829+
linkend="autovacuum">autovacuum</link>, and <xref
827830
linkend="pgstatstatements"/> to track <acronym>WAL</acronym> usage
828831
statistics (Kirill Bychik, Julien Rouhaud)
829832
</para>
@@ -889,7 +892,7 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
889892
-->
890893

891894
<para>
892-
Make <xref linkend="sql-vacuum"/> buffer counters 64-bits
895+
Make <link linkend="sql-vacuum">vacuum</link> buffer counters 64-bits
893896
wide to avoid overflow (&Aacute;lvaro Herrera)
894897
</para>
895898
</listitem>
@@ -973,8 +976,8 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
973976
<para>
974977
Add system view <link
975978
linkend="monitoring-stats-dynamic-views-table"><structname>pg_stat_progress_analyze</structname></link>
976-
to report <xref linkend="sql-analyze"/> progress (&Aacute;lvaro
977-
Herrera, Tatsuro Yamada, Vinayak Pokale)
979+
to report <link linkend="sql-analyze">analyze</link> progress
980+
(&Aacute;lvaroHerrera, Tatsuro Yamada, Vinayak Pokale)
978981
</para>
979982
</listitem>
980983

@@ -1354,8 +1357,8 @@ Author: Amit Kapila <akapila@postgresql.org>
13541357
-->
13551358

13561359
<para>
1357-
Allow <xref linkend="sql-vacuum"/> to process indexes in parallel
1358-
(Masahiko Sawada, Amit Kapila)
1360+
Allow <link linkend="sql-vacuum"><command>VACUUM</command></link>
1361+
to process indexes in parallel(Masahiko Sawada, Amit Kapila)
13591362
</para>
13601363

13611364
<para>
@@ -1383,7 +1386,8 @@ Author: Fujii Masao <fujii@postgresql.org>
13831386
-->
13841387

13851388
<para>
1386-
Report planning-time buffer usage in <xref linkend="sql-explain"/>'s
1389+
Report planning-time buffer usage in <link
1390+
linkend="sql-explain"><command>EXPLAIN</command></link>'s
13871391
<literal>BUFFER</literal> output (Julien Rouhaud)
13881392
</para>
13891393
</listitem>
@@ -1434,9 +1438,9 @@ Author: Peter Eisentraut <peter@eisentraut.org>
14341438
-->
14351439

14361440
<para>
1437-
Add <xref linkend="sql-altertable"/> clause <literal>DROP
1438-
EXPRESSION</literal> to remove generated properties from columns
1439-
(Peter Eisentraut)
1441+
Add <link linkend="sql-altertable"><command>ALTER
1442+
TABLE</command></link> clause <literal>DROP EXPRESSION</literal>
1443+
to remove generated properties from columns(Peter Eisentraut)
14401444
</para>
14411445
</listitem>
14421446

@@ -1459,8 +1463,8 @@ Author: Fujii Masao <fujii@postgresql.org>
14591463
-->
14601464

14611465
<para>
1462-
Add <xref linkend="sql-alterview"/> syntax to rename view columns
1463-
(Fujii Masao)
1466+
Add <link linkend="sql-alterview"><command>ALTER VIEW</command></link>
1467+
syntax to rename view columns(Fujii Masao)
14641468
</para>
14651469

14661470
<para>
@@ -1476,9 +1480,9 @@ Author: Tom Lane <tgl@sss.pgh.pa.us>
14761480
-->
14771481

14781482
<para>
1479-
Add <xref linkend="sql-altertype"/> options useful for extensions,
1480-
like <acronym>TOAST</acronym> and I/O functions control (Tomas
1481-
Vondra, Tom Lane)
1483+
Add <link linkend="sql-altertype"><command>ALTER TYPE</command></link>
1484+
options useful for extensions,like <acronym>TOAST</acronym> and I/O
1485+
functions control (TomasVondra, Tom Lane)
14821486
</para>
14831487
</listitem>
14841488

@@ -1489,8 +1493,9 @@ Author: Peter Eisentraut <peter@eisentraut.org>
14891493
-->
14901494

14911495
<para>
1492-
Add <xref linkend="sql-createdatabase"/> <literal>LOCALE</literal>
1493-
option (Peter Eisentraut)
1496+
Add <link linkend="sql-createdatabase"><command>CREATE
1497+
DATABASE</command></link> <literal>LOCALE</literal> option (Peter
1498+
Eisentraut)
14941499
</para>
14951500

14961501
<para>
@@ -1506,8 +1511,9 @@ Author: Amit Kapila <akapila@postgresql.org>
15061511
-->
15071512

15081513
<para>
1509-
Allow <xref linkend="sql-dropdatabase"/> to disconnect users so
1510-
drop succeeds (Pavel Stehule, Amit Kapila)
1514+
Allow <link linkend="sql-dropdatabase"><command>DROP
1515+
DATABASE</command></link> to disconnect users so drop succeeds (Pavel
1516+
Stehule, Amit Kapila)
15111517
</para>
15121518

15131519
<para>
@@ -1940,7 +1946,7 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
19401946
</sect3>
19411947

19421948
<sect3>
1943-
<title><xref linkend="plpgsql"/></title>
1949+
<title><link linkend="plpgsql">PL/pgSQL</link></title>
19441950

19451951
<itemizedlist>
19461952

@@ -2294,8 +2300,9 @@ Author: Robert Haas <rhaas@postgresql.org>
22942300
</para>
22952301

22962302
<para>
2297-
A new tool <application><xref
2298-
linkend="app-pgverifybackup"/></application> can verify backups.
2303+
A new tool <link
2304+
linkend="app-pgverifybackup"><application>pg_verifybackup</application>"</link>
2305+
can verify backups.
22992306
</para>
23002307
</listitem>
23012308

@@ -2306,9 +2313,9 @@ Author: Author: Fujii Masao <fujii@postgresql.org>
23062313
-->
23072314

23082315
<para>
2309-
Have <application><xref
2310-
linkend="app-pgbasebackup"/></application> estimate the
2311-
total backup size by default (Fujii Masao)
2316+
Have <link
2317+
linkend="app-pgbasebackup"><application>pg_basebackup</application></link>
2318+
estimate thetotal backup size by default (Fujii Masao)
23122319
</para>
23132320

23142321
<para>
@@ -2327,13 +2334,14 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
23272334
-->
23282335

23292336
<para>
2330-
Add <application><xref linkend="app-pgrewind"/></application>
2337+
Add <link
2338+
linkend="app-pgrewind"><application>pg_rewind</application></link>
23312339
option to configure standbys (Paul Guo, Jimmy Yih, Ashwin Agrawal)
23322340
</para>
23332341

23342342
<para>
2335-
This matches <application><xref
2336-
linkend="app-pgbasebackup"/></application>'s
2343+
This matches <link
2344+
linkend="app-pgbasebackup"><application>pg_basebackup</application></link>'s
23372345
<option>--write-recovery-conf</option> option.
23382346
</para>
23392347
</listitem>
@@ -2379,8 +2387,9 @@ Author: Fujii Masao <fujii@postgresql.org>
23792387
-->
23802388

23812389
<para>
2382-
Increase <xref linkend="sql-prepare-transaction"/> information
2383-
reported by <application>pg_waldump</application> (Fujii Masao)
2390+
Increase <link linkend="sql-prepare-transaction"><command>PREPARE
2391+
TRANSACTION</command></link> information reported by
2392+
<application>pg_waldump</application> (Fujii Masao)
23842393
</para>
23852394
</listitem>
23862395

@@ -2391,9 +2400,10 @@ Author: Robert Haas <rhaas@postgresql.org>
23912400
-->
23922401

23932402
<para>
2394-
Add <application><xref linkend="pgwaldump"/></application>
2395-
option <option>--quiet</option> to suppress non-error output
2396-
(Andres Freund, Robert Haas)
2403+
Add <link
2404+
linkend="pgwaldump"><application>pg_waldump</application></link>
2405+
option <option>--quiet</option> to suppress non-error output (Andres
2406+
Freund, Robert Haas)
23972407
</para>
23982408
</listitem>
23992409

@@ -2404,7 +2414,8 @@ Author: Alvaro Herrera <alvherre@alvh.no-ip.org>
24042414
-->
24052415

24062416
<para>
2407-
Allow <application><xref linkend="app-pgdump"/></application>
2417+
Allow <link
2418+
linkend="app-pgdump"><application>pg_dump</application></link>
24082419
<option>--include-foreign-data</option> to dump data from foreign
24092420
servers (Luis Carril)
24102421
</para>
@@ -2417,8 +2428,8 @@ Author: Amit Kapila <akapila@postgresql.org>
24172428
-->
24182429

24192430
<para>
2420-
Allow vacuum commands run by <application><xref
2421-
linkend="app-vacuumdb"/></application> to operate in parallel mode
2431+
Allow vacuum commands run by <link
2432+
linkend="app-vacuumdb">vacuumdb</link> to operate in parallel mode
24222433
(Masahiko Sawada)
24232434
</para>
24242435

@@ -2434,8 +2445,8 @@ Author: Michael Paquier <michael@paquier.xyz>
24342445
-->
24352446

24362447
<para>
2437-
Allow <application><xref linkend="app-reindexdb"/></application>
2438-
to operate inparallel (Julien Rouhaud)
2448+
Allow <link linkend="app-reindexdb">reindexdb</link> to operate in
2449+
parallel (Julien Rouhaud)
24392450
</para>
24402451

24412452
<para>
@@ -2450,8 +2461,8 @@ Author: Amit Kapila <akapila@postgresql.org>
24502461
-->
24512462

24522463
<para>
2453-
Allow <application><xref linkend="app-dropdb"/></application>
2454-
to force disconnectionsso the drop succeeds (Pavel Stehule)
2464+
Allow <link linkend="app-dropdb">dropdb</link> to force disconnections
2465+
so the drop succeeds (Pavel Stehule)
24552466
</para>
24562467

24572468
<para>
@@ -2467,7 +2478,7 @@ Author: Author: Michael Paquier <michael@paquier.xyz>
24672478

24682479
<para>
24692480
Remove <option>--adduser</option> and <option>--no-adduser</option>
2470-
from <application><xref linkend="app-createuser"/></application> (Alexander
2481+
from <link linkend="app-createuser">createuser</link> (Alexander
24712482
Lakhin)
24722483
</para>
24732484

@@ -2484,9 +2495,9 @@ Author: Peter Eisentraut <peter@eisentraut.org>
24842495
-->
24852496

24862497
<para>
2487-
Use the directory of the <application><xref
2488-
linkend="pgupgrade"/></application> binary
2489-
as the default new 'bindir' location when running
2498+
Use the directory of the <link
2499+
linkend="pgupgrade"><application>pg_upgrade</application></link>
2500+
binaryas the default new 'bindir' location when running
24902501
<application>pg_upgrade</application> (Daniel Gustafsson)
24912502
</para>
24922503
</listitem>
@@ -2695,7 +2706,8 @@ Author: Joe Conway <mail@joeconway.com>
26952706
-->
26962707

26972708
<para>
2698-
Add <xref linkend="sql-truncate"/> command hook (Yuli Khodorkovskiy)
2709+
Add <link linkend="sql-truncate"><command>TRUNCATE</command></link>
2710+
command hook (Yuli Khodorkovskiy)
26992711
</para>
27002712
</listitem>
27012713

@@ -2842,7 +2854,8 @@ Author: Andrew Dunstan <andrew@dunslane.net>
28422854
</para>
28432855

28442856
<para>
2845-
Specifically, allow <xref linkend="sql-alterusermapping"/> to set
2857+
Specifically, allow <link linkend="sql-alterusermapping"><command>ALTER
2858+
USER MAPPING</command></link> to set
28462859
<literal>password_required</literal> to false. Care must still be
28472860
taken to avoid non-superusers from using superuser credentials to
28482861
connect to the foreign server.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp