File tree 2 files changed +2
-2
lines changed
src/backend/storage/freespace
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 67
67
<para>
68
68
For indexes, what is tracked is entirely-unused pages, rather than free
69
69
space within pages. Therefore, the values are not meaningful, just
70
- whether a page is full or empty.
70
+ whether a page is in-use or empty.
71
71
</para>
72
72
</sect2>
73
73
Original file line number Diff line number Diff line change 16
16
* This is similar to the FSM used for heap, in freespace.c, but instead
17
17
* of tracking the amount of free space on pages, we only track whether
18
18
* pages are completely free or in-use. We use the same FSM implementation
19
- * as for heaps, using BLCKSZ - 1 to denote used pages, and 0 for unused.
19
+ * as for heaps, using 0 to denote used pages, and BLCKSZ - 1 for unused.
20
20
*
21
21
*-------------------------------------------------------------------------
22
22
*/
You can’t perform that action at this time.
0 commit comments