mirror of
https://github.com/postgres/postgres.git
synced 2025-05-15 19:15:29 +03:00
Fix documentation oversights about pageinspect and initialization fork.
The initialization fork was added in 9.1, but has not been taken into consideration in documents of get_raw_page function in pageinspect and storage layout. This commit fixes those oversights. get_raw_page can read not only a table but also an index, etc. So it should be documented that the function can read any relation. This commit also fixes the document of pageinspect that way. Back-patch to 9.1 where those oversights existed. Vik Fearing, review by MauMau
This commit is contained in:
parent
5d20643532
commit
44ea72d280
@ -28,11 +28,12 @@
|
|||||||
<listitem>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<function>get_raw_page</function> reads the specified block of the named
|
<function>get_raw_page</function> reads the specified block of the named
|
||||||
table and returns a copy as a <type>bytea</> value. This allows a
|
relation and returns a copy as a <type>bytea</> value. This allows a
|
||||||
single time-consistent copy of the block to be obtained.
|
single time-consistent copy of the block to be obtained.
|
||||||
<replaceable>fork</replaceable> should be <literal>'main'</literal> for
|
<replaceable>fork</replaceable> should be <literal>'main'</literal> for
|
||||||
the main data fork, or <literal>'fsm'</literal> for the free space map,
|
the main data fork, <literal>'fsm'</literal> for the free space map,
|
||||||
or <literal>'vm'</literal> for the visibility map.
|
<literal>'vm'</literal> for the visibility map, or <literal>'init'</literal>
|
||||||
|
for the initialization fork.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
@ -265,8 +265,8 @@ The <function>pg_relation_filepath()</> function shows the entire path
|
|||||||
as a substitute for remembering many of the above rules. But keep in
|
as a substitute for remembering many of the above rules. But keep in
|
||||||
mind that this function just gives the name of the first segment of the
|
mind that this function just gives the name of the first segment of the
|
||||||
main fork of the relation — you may need to append a segment number
|
main fork of the relation — you may need to append a segment number
|
||||||
and/or <literal>_fsm</> or <literal>_vm</> to find all the files associated
|
and/or <literal>_fsm</>, <literal>_vm</>, or <literal>_init</> to find all
|
||||||
with the relation.
|
the files associated with the relation.
|
||||||
</para>
|
</para>
|
||||||
|
|
||||||
<para>
|
<para>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user