diff options
author | Peter Geoghegan <pg@bowt.ie> | 2023-05-10 10:49:43 -0700 |
---|---|---|
committer | Peter Geoghegan <pg@bowt.ie> | 2023-05-10 10:49:43 -0700 |
commit | 71fe2372278760714a442c82eb2ef524b7ea392a (patch) | |
tree | fe006671db2d8bc7ddc7dc6f25ededf60508591a | |
parent | 2faab87390b03929a8cbb5a9336a04faa45a27c5 (diff) | |
download | postgresql-71fe2372278760714a442c82eb2ef524b7ea392a.tar.gz postgresql-71fe2372278760714a442c82eb2ef524b7ea392a.zip |
Doc: Fix link to fillfactor reloption.
Fix a link from the "Heap-Only Tuples" documentation section.
Previously, its "fillfactor" link pointed to the "CREATE TABLE"
command's documentation. Now the link directly points to the fillfactor
storage parameter documentation (which is about half way into the
"CREATE TABLE" sect1).
Oversight in commit 115464bb.
Backpatch: 12-, the first version with a usable reloption link.
-rw-r--r-- | doc/src/sgml/storage.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/storage.sgml b/doc/src/sgml/storage.sgml index cc20d1ca9dd..002402c1ad6 100644 --- a/doc/src/sgml/storage.sgml +++ b/doc/src/sgml/storage.sgml @@ -1131,7 +1131,7 @@ data. Empty in ordinary tables.</entry> if columns used by indexes are not updated. You can increase the likelihood of sufficient page space for <acronym>HOT</acronym> updates by decreasing a table's <link - linkend="sql-createtable"><literal>fillfactor</literal></link>. + linkend="reloption-fillfactor"><literal>fillfactor</literal></link>. If you don't, <acronym>HOT</acronym> updates will still happen because new rows will naturally migrate to new pages and existing pages with sufficient free space for new row versions. The system view <link |