Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: postgresql-cfbot/postgresql
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1eb3993
Choose a base ref
...
head repository: postgresql-cfbot/postgresql
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 422bb05
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 26, 2025

  1. A small correction to doc and comment of FSM for indexes.

    tussosedan authored and Commitfest Bot committed Mar 26, 2025
    Copy the full SHA
    2ee90f4 View commit details
  2. [CF 5598] v1 - A small correction to doc and comment of FSM for indexes

    This branch was automatically generated by a robot using patches from an
    email thread registered at:
    
    https://commitfest.postgresql.org/patch/5598
    
    The branch will be overwritten each time a new patch version is posted to
    the thread, and also periodically to check for bitrot caused by changes
    on the master branch.
    
    Patch(es): https://www.postgresql.org/message-id/71eef655-c192-453f-ac45-2772fec2cb04@gmail.com
    Author(s): Alex Friedman
    Commitfest Bot committed Mar 26, 2025
    Copy the full SHA
    422bb05 View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 doc/src/sgml/pgfreespacemap.sgml
  2. +1 −1 src/backend/storage/freespace/indexfsm.c
2 changes: 1 addition & 1 deletion doc/src/sgml/pgfreespacemap.sgml
Original file line number Diff line number Diff line change
@@ -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>

2 changes: 1 addition & 1 deletion src/backend/storage/freespace/indexfsm.c
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
* 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.
*
*-------------------------------------------------------------------------
*/