diff options
author | Jeff Davis <jdavis@postgresql.org> | 2022-08-25 10:26:31 -0700 |
---|---|---|
committer | Jeff Davis <jdavis@postgresql.org> | 2022-08-25 10:26:31 -0700 |
commit | 66af5eea31e06fac288274cc056357cebbbbefe3 (patch) | |
tree | e133835993e311337206d192bb6ff33047b06c23 | |
parent | d389487525bc1d543f27543ed2ff824d3a30f508 (diff) | |
download | postgresql-66af5eea31e06fac288274cc056357cebbbbefe3.tar.gz postgresql-66af5eea31e06fac288274cc056357cebbbbefe3.zip |
Fix doc oversight for custom WAL resource managers.
Reported-by: Bharath Rupireddy
Backpatch-through: 15
Discussion: https://postgr.es/m/CALj2ACU+at7RqnWEzS59QsFg3ZOF4C4GSp7pt+PWiLEp0zrEKg@mail.gmail.com
-rw-r--r-- | doc/src/sgml/tableam.sgml | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/doc/src/sgml/tableam.sgml b/doc/src/sgml/tableam.sgml index a4fed6ea577..6a6eb2b7665 100644 --- a/doc/src/sgml/tableam.sgml +++ b/doc/src/sgml/tableam.sgml @@ -87,11 +87,8 @@ linkend="wal"><acronym>WAL</acronym></link>, or a custom implementation. If <acronym>WAL</acronym> is chosen, either <link linkend="generic-wal">Generic WAL Records</link> can be used, - or a new type of <acronym>WAL</acronym> records can be implemented. - Generic WAL Records are easy, but imply higher WAL volume. - Implementation of a new type of WAL record - currently requires modifications to core code (specifically, - <filename>src/include/access/rmgrlist.h</filename>). + or a <link linkend="custom-rmgr">Custom WAL Resource Manager</link> can be + implemented. </para> <para> |