summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorMichael Paquier2024-10-02 02:12:40 +0000
committerMichael Paquier2024-10-02 02:12:40 +0000
commit506eede7111ae7c88bd3c21f653bbb65846bd4a5 (patch)
treed1e4a9b5d9d2a963d761467d0c737cc96260af17 /doc/src
parentda8a4c1666476648659dc5fb6fc01ba5cd5d16a1 (diff)
doc: Clarify name of files generated by pg_waldump --save-fullpage
The fork name is always separated with the block number by an underscore in the names of the files generated, but the docs stuck them together without a separator, which was confusing. Author: Christoph Berg Discussion: https://postgr.es/m/[email protected] Backpatch-through: 16
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/pg_waldump.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/pg_waldump.sgml b/doc/src/sgml/ref/pg_waldump.sgml
index a9371e037bd..ce23add5577 100644
--- a/doc/src/sgml/ref/pg_waldump.sgml
+++ b/doc/src/sgml/ref/pg_waldump.sgml
@@ -284,7 +284,7 @@ PostgreSQL documentation
</para>
<para>
The full page images are saved with the following file name format:
- <literal><replaceable>TIMELINE</replaceable>-<replaceable>LSN</replaceable>.<replaceable>RELTABLESPACE</replaceable>.<replaceable>DATOID</replaceable>.<replaceable>RELNODE</replaceable>.<replaceable>BLKNO</replaceable><replaceable>FORK</replaceable></literal>
+ <literal><replaceable>TIMELINE</replaceable>-<replaceable>LSN</replaceable>.<replaceable>RELTABLESPACE</replaceable>.<replaceable>DATOID</replaceable>.<replaceable>RELNODE</replaceable>.<replaceable>BLKNO</replaceable>_<replaceable>FORK</replaceable></literal>
The file names are composed of the following parts:
<informaltable>
@@ -335,8 +335,8 @@ PostgreSQL documentation
<entry>FORK</entry>
<entry>
The name of the fork the full page image came from, such as
- <literal>_main</literal>, <literal>_fsm</literal>,
- <literal>_vm</literal>, or <literal>_init</literal>.
+ <literal>main</literal>, <literal>fsm</literal>,
+ <literal>vm</literal>, or <literal>init</literal>.
</entry>
</row>
</tbody>