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: cf/6104~1
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: cf/6104
Choose a head ref
  • 3 commits
  • 29 files changed
  • 2 contributors

Commits on Oct 26, 2025

  1. Remove Item type

    This type is just char * underneath, it provides no real value, no
    type safety, and just makes the code one level more mysterious.  It is
    more idiomatic to refer to blobs of memory by a combination of void *
    and size_t, so change it to that.
    
    Also, since this type hides the pointerness, we can't apply qualifiers
    to what is pointed to, which requires some unconstify nonsense.  This
    change allows fixing that.
    
    Extension code that uses the Item type can change its code to use
    void * to be backward compatible.
    petere authored and Commitfest Bot committed Oct 26, 2025
    Configuration menu
    Copy the full SHA
    50cb694 View commit details
    Browse the repository at this point in the history
  2. Some const qualifications

    Add some const qualifications afforded by the previous change that
    added a const qualification to PageAddItemExtended().
    petere authored and Commitfest Bot committed Oct 26, 2025
    Configuration menu
    Copy the full SHA
    6f2218b View commit details
    Browse the repository at this point in the history
  3. [CF 6104] Remove Item type

    This branch was automatically generated by a robot using patches from an
    email thread registered at:
    
    https://commitfest.postgresql.org/patch/6104
    
    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/c75cccf5-5709-407b-a36a-2ae6570be766@eisentraut.org
    Author(s): Peter Eisentraut
    Commitfest Bot committed Oct 26, 2025
    Configuration menu
    Copy the full SHA
    d6bc9a2 View commit details
    Browse the repository at this point in the history
Loading