summaryrefslogtreecommitdiff
path: root/doc/src/sgml/pgfreespacemap.sgml
diff options
context:
space:
mode:
authorMichael Paquier2022-03-09 01:43:25 +0000
committerMichael Paquier2022-03-09 01:43:25 +0000
commit7687ca996e558d95e68d2d0d70fed22a6317ba78 (patch)
tree1646c03a46667016f5129fafb4bed08b3509f8f8 /doc/src/sgml/pgfreespacemap.sgml
parent43e7787dd3387a7455fc4d9c353addb79a50ebe5 (diff)
doc: Improve references to term "FSM" in pageinspect and pgfreespacemap
Author: Dong Wook Lee Reviewed-by: Laurenz Albe Discussion: https://postgr.es/m/CAAcBya+=F=HaHxJ7tGjAM1r=A=+bDbimpsex8Vqrb4GjqFDYsQ@mail.gmail.com
Diffstat (limited to 'doc/src/sgml/pgfreespacemap.sgml')
-rw-r--r--doc/src/sgml/pgfreespacemap.sgml17
1 files changed, 9 insertions, 8 deletions
diff --git a/doc/src/sgml/pgfreespacemap.sgml b/doc/src/sgml/pgfreespacemap.sgml
index 5025498249d..1f7867d9b9f 100644
--- a/doc/src/sgml/pgfreespacemap.sgml
+++ b/doc/src/sgml/pgfreespacemap.sgml
@@ -9,10 +9,10 @@
<para>
The <filename>pg_freespacemap</filename> module provides a means for examining the
- free space map (FSM). It provides a function called
- <function>pg_freespace</function>, or two overloaded functions, to be
- precise. The functions show the value recorded in the free space map for
- a given page, or for all pages in the relation.
+ <link linkend="storage-fsm">free space map</link> (<acronym>FSM</acronym>).
+ It provides a function called <function>pg_freespace</function>, or two
+ overloaded functions, to be precise. The functions show the value recorded in
+ the free space map for a given page, or for all pages in the relation.
</para>
<para>
@@ -36,7 +36,7 @@
<listitem>
<para>
Returns the amount of free space on the page of the relation, specified
- by <literal>blkno</literal>, according to the FSM.
+ by <literal>blkno</literal>, according to the <acronym>FSM</acronym>.
</para>
</listitem>
</varlistentry>
@@ -50,7 +50,8 @@
<listitem>
<para>
Displays the amount of free space on each page of the relation,
- according to the FSM. A set of <literal>(blkno bigint, avail int2)</literal>
+ according to the <acronym>FSM</acronym>. A set of
+ <literal>(blkno bigint, avail int2)</literal>
tuples is returned, one tuple for each page in the relation.
</para>
</listitem>
@@ -112,8 +113,8 @@ postgres=# SELECT * FROM pg_freespace('foo', 7);
<para>
Original version by Mark Kirkwood <email>[email protected]</email>.
- Rewritten in version 8.4 to suit new FSM implementation by Heikki
- Linnakangas <email>[email protected]</email>
+ Rewritten in version 8.4 to suit new <acronym>FSM</acronym> implementation
+ by Heikki Linnakangas <email>[email protected]</email>
</para>
</sect2>