diff options
author | Michael Paquier | 2025-03-27 01:20:41 +0000 |
---|---|---|
committer | Michael Paquier | 2025-03-27 01:20:41 +0000 |
commit | 44fe6ceb51f001689048c19ea3ea53fbf2572581 (patch) | |
tree | 0a1a7aa2ad11691dc92d85c3a48429b169f948e8 /doc/src/sgml/pgfreespacemap.sgml | |
parent | c325a7633fcb33dbd73f46ddbbe91e95ddf3b227 (diff) |
doc: Correct description of values used in FSM for indexes
The implementation of FSM for indexes is simpler than heap, where 0 is
used to track if a page is in-use and (BLCKSZ - 1) if a page is free.
One comment in indexfsm.c and one description in the documentation of
pg_freespacemap were incorrect about that.
Author: Alex Friedman <[email protected]>
Discussion: https://postgr.es/m/[email protected]
Backpatch-through: 13
Diffstat (limited to 'doc/src/sgml/pgfreespacemap.sgml')
-rw-r--r-- | doc/src/sgml/pgfreespacemap.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/pgfreespacemap.sgml b/doc/src/sgml/pgfreespacemap.sgml index 829ad60f32f..3774a9f8c6b 100644 --- a/doc/src/sgml/pgfreespacemap.sgml +++ b/doc/src/sgml/pgfreespacemap.sgml @@ -67,7 +67,7 @@ <para> For indexes, what is tracked is entirely-unused pages, rather than free space within pages. Therefore, the values are not meaningful, just - whether a page is full or empty. + whether a page is in-use or empty. </para> </sect2> |