diff options
author | Peter Geoghegan | 2023-05-10 17:49:50 +0000 |
---|---|---|
committer | Peter Geoghegan | 2023-05-10 17:49:50 +0000 |
commit | 375407f4940ba0922513666f00852c54943eb1a0 (patch) | |
tree | d8358b6d0c34f0931aa10c95788f61d70a7bffb0 | |
parent | c39f2f68e95a54e430c6a7b7d1e9f98cedff5aff (diff) |
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 e5b9f3f1ffa..148fb1b49d9 100644 --- a/doc/src/sgml/storage.sgml +++ b/doc/src/sgml/storage.sgml @@ -1136,7 +1136,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 |