@@ -1966,9 +1966,9 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
1966
1966
<para>
1967
1967
Size of the on-disk representation of this table in pages (of size
1968
1968
<symbol>BLCKSZ</symbol>). This is only an estimate used by the
1969
- planner. It is updated by <command>VACUUM</command >,
1970
- <command>ANALYZE</command >, and a few DDL commands such as
1971
- <command>CREATE INDEX</command >.
1969
+ planner. It is updated by <xref linkend="sql-vacuum"/ >,
1970
+ <xref linkend="sql-analyze"/ >, and a few DDL commands such as
1971
+ <xref linkend="sql-createindex"/ >.
1972
1972
</para></entry>
1973
1973
</row>
1974
1974
@@ -1978,9 +1978,9 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
1978
1978
</para>
1979
1979
<para>
1980
1980
Number of live rows in the table. This is only an estimate used by
1981
- the planner. It is updated by <command>VACUUM</command >,
1982
- <command>ANALYZE</command >, and a few DDL commands such as
1983
- <command>CREATE INDEX</command >.
1981
+ the planner. It is updated by <xref linkend="sql-vacuum"/ >,
1982
+ <xref linkend="sql-analyze"/ >, and a few DDL commands such as
1983
+ <xref linkend="sql-createindex"/ >.
1984
1984
If the table has never yet been vacuumed or
1985
1985
analyzed, <structfield>reltuples</structfield>
1986
1986
contains <literal>-1</literal> indicating that the row count is
@@ -1995,9 +1995,9 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
1995
1995
<para>
1996
1996
Number of pages that are marked all-visible in the table's
1997
1997
visibility map. This is only an estimate used by the
1998
- planner. It is updated by <command>VACUUM</command >,
1999
- <command>ANALYZE</command >, and a few DDL commands such as
2000
- <command>CREATE INDEX</command >.
1998
+ planner. It is updated by <xref linkend="sql-vacuum"/ >,
1999
+ <xref linkend="sql-analyze"/ >, and a few DDL commands such as
2000
+ <xref linkend="sql-createindex"/ >.
2001
2001
</para></entry>
2002
2002
</row>
2003
2003
@@ -2241,8 +2241,8 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
2241
2241
lazily: they are guaranteed to be true if that's the correct state, but
2242
2242
may not be reset to false immediately when the condition is no longer
2243
2243
true. For example, <structfield>relhasindex</structfield> is set by
2244
- <command>CREATE INDEX</command >, but it is never cleared by
2245
- <command>DROP INDEX</command >. Instead, <command>VACUUM</command > clears
2244
+ <xref linkend="sql-createindex"/ >, but it is never cleared by
2245
+ <xref linkend="sql-dropindex"/ >. Instead, <xref linkend="sql-vacuum"/ > clears
2246
2246
<structfield>relhasindex</structfield> if it finds the table has no indexes. This
2247
2247
arrangement avoids race conditions and improves concurrency.
2248
2248
</para>
@@ -2419,8 +2419,8 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
2419
2419
</para>
2420
2420
2421
2421
<para>
2422
- User-defined constraint triggers (created with <command>CREATE CONSTRAINT
2423
- TRIGGER</command>) also give rise to an entry in this table.
2422
+ User-defined constraint triggers (created with <link linkend="sql-createtrigger">
2423
+ <command>CREATE CONSTRAINT TRIGGER</command></link >) also give rise to an entry in this table.
2424
2424
</para>
2425
2425
2426
2426
<para>
@@ -3425,7 +3425,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
3425
3425
the referenced object (see
3426
3426
<link linkend="catalog-pg-extension"><structname>pg_extension</structname></link>).
3427
3427
The dependent object can be dropped only via
3428
- <command>DROP EXTENSION</command > on the referenced object.
3428
+ <xref linkend="sql-dropextension"/ > on the referenced object.
3429
3429
Functionally this dependency type acts the same as
3430
3430
an <literal>INTERNAL</literal> dependency, but it's kept separate for
3431
3431
clarity and to simplify <application>pg_dump</application>.
@@ -3456,7 +3456,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
3456
3456
There is no dependent object; this type of entry is a signal
3457
3457
that the system itself depends on the referenced object, and so
3458
3458
that object must never be deleted. Entries of this type are
3459
- created only by <command >initdb</command >. The columns for the
3459
+ created only by <application >initdb</application >. The columns for the
3460
3460
dependent object contain zeroes.
3461
3461
</para>
3462
3462
</listitem>
@@ -4285,7 +4285,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
4285
4285
<para>
4286
4286
If true, the index is currently valid for queries. False means the
4287
4287
index is possibly incomplete: it must still be modified by
4288
- <command>INSERT</command >/<command>UPDATE</command > operations, but it cannot safely
4288
+ <xref linkend="sql-insert"/ >/<xref linkend="sql-update"/ > operations, but it cannot safely
4289
4289
be used for queries. If it is unique, the uniqueness property is not
4290
4290
guaranteed true either.
4291
4291
</para></entry>
@@ -4309,7 +4309,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
4309
4309
</para>
4310
4310
<para>
4311
4311
If true, the index is currently ready for inserts. False means the
4312
- index must be ignored by <command>INSERT</command >/<command>UPDATE</command >
4312
+ index must be ignored by <xref linkend="sql-insert"/ >/<xref linkend="sql-update"/ >
4313
4313
operations.
4314
4314
</para></entry>
4315
4315
</row>
@@ -4330,8 +4330,8 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
4330
4330
</para>
4331
4331
<para>
4332
4332
If true this index has been chosen as <quote>replica identity</quote>
4333
- using <command>ALTER TABLE ... REPLICA IDENTITY USING INDEX
4334
- ...</command>
4333
+ using <link linkend="sql-altertable-replica-identity">< command>ALTER TABLE ...
4334
+ REPLICA IDENTITY USING INDEX ...</command></link >
4335
4335
</para></entry>
4336
4336
</row>
4337
4337
@@ -4504,11 +4504,11 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
4504
4504
<para>
4505
4505
Objects can have initial privileges either by having those privileges set
4506
4506
when the system is initialized (by <application>initdb</application>) or when the
4507
- object is created during a <command>CREATE EXTENSION</command > and the
4508
- extension script sets initial privileges using the <command>GRANT</command >
4507
+ object is created during a <xref linkend="sql-createextension"/ > and the
4508
+ extension script sets initial privileges using the <xref linkend="sql-grant"/ >
4509
4509
system. Note that the system will automatically handle recording of the
4510
4510
privileges during the extension script and that extension authors need
4511
- only use the <command>GRANT</command > and <command>REVOKE</command >
4511
+ only use the <xref linkend="sql-grant"/ > and <xref linkend="sql-revoke"/ >
4512
4512
statements in their script to have the privileges recorded. The
4513
4513
<literal>privtype</literal> column indicates if the initial privilege was
4514
4514
set by <application>initdb</application> or during a
@@ -5564,10 +5564,10 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
5564
5564
</para>
5565
5565
<para>
5566
5566
The command type to which the policy is applied:
5567
- <literal>r</literal> for <command>SELECT</command >,
5568
- <literal>a</literal> for <command>INSERT</command >,
5569
- <literal>w</literal> for <command>UPDATE</command >,
5570
- <literal>d</literal> for <command>DELETE</command >,
5567
+ <literal>r</literal> for <xref linkend="sql-select"/ >,
5568
+ <literal>a</literal> for <xref linkend="sql-insert"/ >,
5569
+ <literal>w</literal> for <xref linkend="sql-update"/ >,
5570
+ <literal>d</literal> for <xref linkend="sql-delete"/ >,
5571
5571
or <literal>*</literal> for all
5572
5572
</para></entry>
5573
5573
</row>
@@ -6075,7 +6075,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
6075
6075
<structfield>pubinsert</structfield> <type>bool</type>
6076
6076
</para>
6077
6077
<para>
6078
- If true, <command>INSERT</command > operations are replicated for
6078
+ If true, <xref linkend="sql-insert"/ > operations are replicated for
6079
6079
tables in the publication.
6080
6080
</para></entry>
6081
6081
</row>
@@ -6085,7 +6085,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
6085
6085
<structfield>pubupdate</structfield> <type>bool</type>
6086
6086
</para>
6087
6087
<para>
6088
- If true, <command>UPDATE</command > operations are replicated for
6088
+ If true, <xref linkend="sql-update"/ > operations are replicated for
6089
6089
tables in the publication.
6090
6090
</para></entry>
6091
6091
</row>
@@ -6095,7 +6095,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
6095
6095
<structfield>pubdelete</structfield> <type>bool</type>
6096
6096
</para>
6097
6097
<para>
6098
- If true, <command>DELETE</command > operations are replicated for
6098
+ If true, <xref linkend="sql-delete"/ > operations are replicated for
6099
6099
tables in the publication.
6100
6100
</para></entry>
6101
6101
</row>
@@ -6105,7 +6105,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
6105
6105
<structfield>pubtruncate</structfield> <type>bool</type>
6106
6106
</para>
6107
6107
<para>
6108
- If true, <command>TRUNCATE</command > operations are replicated for
6108
+ If true, <xref linkend="sql-truncate"/ > operations are replicated for
6109
6109
tables in the publication.
6110
6110
</para></entry>
6111
6111
</row>
@@ -6408,9 +6408,9 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
6408
6408
<structfield>ev_type</structfield> <type>char</type>
6409
6409
</para>
6410
6410
<para>
6411
- Event type that the rule is for: 1 = <command>SELECT</command >, 2 =
6412
- <command>UPDATE</command >, 3 = <command>INSERT</command >, 4 =
6413
- <command>DELETE</command >
6411
+ Event type that the rule is for: 1 = <xref linkend="sql-select"/ >, 2 =
6412
+ <xref linkend="sql-update"/ >, 3 = <xref linkend="sql-insert"/ >, 4 =
6413
+ <xref linkend="sql-delete"/ >
6414
6414
</para></entry>
6415
6415
</row>
6416
6416
@@ -6832,7 +6832,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
6832
6832
There is no dependent object; this type of entry is a signal
6833
6833
that the system itself depends on the referenced object, and so
6834
6834
that object must never be deleted. Entries of this type are
6835
- created only by <command >initdb</command >. The columns for the
6835
+ created only by <application >initdb</application >. The columns for the
6836
6836
dependent object contain zeroes.
6837
6837
</para>
6838
6838
</listitem>
@@ -7336,9 +7336,9 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
7336
7336
7337
7337
<para>
7338
7338
The <structname>pg_statistic_ext</structname> entry is filled in
7339
- completely during <command>CREATE STATISTICS</command >, but the actual
7339
+ completely during <xref linkend="sql-createstatistics"/ >, but the actual
7340
7340
statistical values are not computed then.
7341
- Subsequent <command>ANALYZE</command > commands compute the desired values
7341
+ Subsequent <xref linkend="sql-analyze"/ > commands compute the desired values
7342
7342
and populate an entry in the
7343
7343
<link linkend="catalog-pg-statistic-ext-data"><structname>pg_statistic_ext_data</structname></link>
7344
7344
catalog.
@@ -7590,8 +7590,9 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
7590
7590
7591
7591
<para>
7592
7592
This catalog only contains tables known to the subscription after running
7593
- either <command>CREATE SUBSCRIPTION</command> or
7594
- <command>ALTER SUBSCRIPTION ... REFRESH PUBLICATION</command>.
7593
+ either <xref linkend="sql-createsubscription"/> or
7594
+ <link linkend="sql-altersubscription"><command>ALTER SUBSCRIPTION ... REFRESH
7595
+ PUBLICATION</command></link>.
7595
7596
</para>
7596
7597
7597
7598
<table>
@@ -8837,7 +8838,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
8837
8838
(references <link linkend="catalog-pg-proc"><structname>pg_proc</structname></link>.<structfield>oid</structfield>)
8838
8839
</para>
8839
8840
<para>
8840
- Custom <command>ANALYZE</command > function, or 0 to use the standard function
8841
+ Custom <xref linkend="sql-analyze"/ > function, or 0 to use the standard function
8841
8842
</para></entry>
8842
8843
</row>
8843
8844
@@ -10324,7 +10325,7 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l
10324
10325
<structfield>indexdef</structfield> <type>text</type>
10325
10326
</para>
10326
10327
<para>
10327
- Index definition (a reconstructed <command>CREATE INDEX</command >
10328
+ Index definition (a reconstructed <xref linkend="sql-createindex"/ >
10328
10329
command)
10329
10330
</para></entry>
10330
10331
</row>
@@ -10779,7 +10780,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
10779
10780
<structfield>definition</structfield> <type>text</type>
10780
10781
</para>
10781
10782
<para>
10782
- Materialized view definition (a reconstructed <command>SELECT</command > query)
10783
+ Materialized view definition (a reconstructed <xref linkend="sql-select"/ > query)
10783
10784
</para></entry>
10784
10785
</row>
10785
10786
</tbody>
@@ -10949,7 +10950,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
10949
10950
<para>
10950
10951
The query string submitted by the client to create this
10951
10952
prepared statement. For prepared statements created via SQL,
10952
- this is the <command>PREPARE</command > statement submitted by
10953
+ this is the <xref linkend="sql-prepare"/ > statement submitted by
10953
10954
the client. For prepared statements created via the
10954
10955
frontend/backend protocol, this is the text of the prepared
10955
10956
statement itself.
@@ -10983,7 +10984,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
10983
10984
</para>
10984
10985
<para>
10985
10986
<literal>true</literal> if the prepared statement was created
10986
- via the <command>PREPARE</command > SQL command;
10987
+ via the <xref linkend="sql-prepare"/ > SQL command;
10987
10988
<literal>false</literal> if the statement was prepared via the
10988
10989
frontend/backend protocol
10989
10990
</para></entry>
@@ -12114,7 +12115,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
12114
12115
<structfield>reset_val</structfield> <type>text</type>
12115
12116
</para>
12116
12117
<para>
12117
- Value that <command>RESET</command > would reset the parameter to
12118
+ Value that <xref linkend="sql-reset"/ > would reset the parameter to
12118
12119
in the current session
12119
12120
</para></entry>
12120
12121
</row>
@@ -12172,7 +12173,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
12172
12173
These settings cannot be changed directly; they reflect internally
12173
12174
determined values. Some of them may be adjustable by rebuilding the
12174
12175
server with different configuration options, or by changing options
12175
- supplied to <command >initdb</command >.
12176
+ supplied to <application >initdb</application >.
12176
12177
</para>
12177
12178
</listitem>
12178
12179
</varlistentry>
@@ -12247,7 +12248,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
12247
12248
<listitem>
12248
12249
<para>
12249
12250
These settings can be set from <filename>postgresql.conf</filename>,
12250
- or within a session via the <command>SET</command > command; but only superusers
12251
+ or within a session via the <xref linkend="sql-set"/ > command; but only superusers
12251
12252
can change them via <command>SET</command>. Changes in
12252
12253
<filename>postgresql.conf</filename> will affect existing sessions
12253
12254
only if no session-local value has been established with <command>SET</command>.
@@ -12260,7 +12261,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
12260
12261
<listitem>
12261
12262
<para>
12262
12263
These settings can be set from <filename>postgresql.conf</filename>,
12263
- or within a session via the <command>SET</command > command. Any user is
12264
+ or within a session via the <xref linkend="sql-set"/ > command. Any user is
12264
12265
allowed to change their session-local value. Changes in
12265
12266
<filename>postgresql.conf</filename> will affect existing sessions
12266
12267
only if no session-local value has been established with <command>SET</command>.
@@ -12276,7 +12277,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
12276
12277
12277
12278
<para>
12278
12279
The <structname>pg_settings</structname> view cannot be inserted into or
12279
- deleted from, but it can be updated. An <command>UPDATE</command > applied
12280
+ deleted from, but it can be updated. An <xref linkend="sql-update"/ > applied
12280
12281
to a row of <structname>pg_settings</structname> is equivalent to executing
12281
12282
the <xref linkend="sql-set"/> command on that named
12282
12283
parameter. The change only affects the value used by the current
@@ -12620,7 +12621,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
12620
12621
If greater than zero, the estimated number of distinct values in the
12621
12622
column. If less than zero, the negative of the number of distinct
12622
12623
values divided by the number of rows. (The negated form is used when
12623
- <command>ANALYZE</command > believes that the number of distinct values is
12624
+ <xref linkend="sql-analyze"/ > believes that the number of distinct values is
12624
12625
likely to increase as the table grows; the positive form is used when
12625
12626
the column seems to have a fixed number of possible values.) For
12626
12627
example, -1 indicates a unique column in which the number of distinct
@@ -12718,7 +12719,8 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
12718
12719
12719
12720
<para>
12720
12721
The maximum number of entries in the array fields can be controlled on a
12721
- column-by-column basis using the <command>ALTER TABLE SET STATISTICS</command>
12722
+ column-by-column basis using the <link linkend="sql-altertable"><command>ALTER
12723
+ TABLE SET STATISTICS</command></link>
12722
12724
command, or globally by setting the
12723
12725
<xref linkend="guc-default-statistics-target"/> run-time parameter.
12724
12726
</para>
@@ -12843,7 +12845,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
12843
12845
than zero, the estimated number of distinct values in the combination.
12844
12846
If less than zero, the negative of the number of distinct values divided
12845
12847
by the number of rows.
12846
- (The negated form is used when <command>ANALYZE</command > believes that
12848
+ (The negated form is used when <xref linkend="sql-analyze"/ > believes that
12847
12849
the number of distinct values is likely to increase as the table grows;
12848
12850
the positive form is used when the column seems to have a fixed number
12849
12851
of possible values.) For example, -1 indicates a unique combination of
@@ -12908,8 +12910,8 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
12908
12910
12909
12911
<para>
12910
12912
The maximum number of entries in the array fields can be controlled on a
12911
- column-by-column basis using the <command>ALTER TABLE SET STATISTICS</ command>
12912
- command, or globally by setting the
12913
+ column-by-column basis using the <link linkend="sql-altertable">< command>ALTER
12914
+ TABLE SET STATISTICS</command></link> command, or globally by setting the
12913
12915
<xref linkend="guc-default-statistics-target"/> run-time parameter.
12914
12916
</para>
12915
12917
@@ -13471,7 +13473,7 @@ SELECT * FROM pg_locks pl LEFT JOIN pg_prepared_xacts ppx
13471
13473
<structfield>definition</structfield> <type>text</type>
13472
13474
</para>
13473
13475
<para>
13474
- View definition (a reconstructed <command>SELECT</command > query)
13476
+ View definition (a reconstructed <xref linkend="sql-select"/ > query)
13475
13477
</para></entry>
13476
13478
</row>
13477
13479
</tbody>
0 commit comments