From: Michael Paquier Date: Wed, 2 Oct 2024 02:12:48 +0000 (+0900) Subject: doc: Clarify name of files generated by pg_waldump --save-fullpage X-Git-Tag: REL_16_5~61 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e4859f857b6ed3d789231632a4085e9f554859cf;p=thirdparty%2Fpostgresql.git 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/ZvxtSLiix9eceMRM@msg.df7cb.de Backpatch-through: 16 --- diff --git a/doc/src/sgml/ref/pg_waldump.sgml b/doc/src/sgml/ref/pg_waldump.sgml index 4592d6016a5..6ee00a605f3 100644 --- a/doc/src/sgml/ref/pg_waldump.sgml +++ b/doc/src/sgml/ref/pg_waldump.sgml @@ -283,7 +283,7 @@ PostgreSQL documentation The full page images are saved with the following file name format: - TIMELINE-LSN.RELTABLESPACE.DATOID.RELNODE.BLKNOFORK + TIMELINE-LSN.RELTABLESPACE.DATOID.RELNODE.BLKNO_FORK The file names are composed of the following parts: @@ -334,8 +334,8 @@ PostgreSQL documentation FORK The name of the fork the full page image came from, such as - _main, _fsm, - _vm, or _init. + main, fsm, + vm, or init.