index 829ad60f32fdc7b124439263566fa73406114159..3774a9f8c6b29eea7d6c1598b9ac6fce272d87de 100644 (file)
<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>
index 1fc263892a7f33018f92230fc23bb4ecedd2bdf4..614261e4e22fc8ff3624ba3966590db98449fef8 100644 (file)
* This is similar to the FSM used for heap, in freespace.c, but instead
* of tracking the amount of free space on pages, we only track whether
* pages are completely free or in-use. We use the same FSM implementation
- * as for heaps, using BLCKSZ - 1 to denote used pages, and 0 for unused.
+ * as for heaps, using 0 to denote used pages, and (BLCKSZ - 1) for unused.
*
*-------------------------------------------------------------------------
*/