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/6099~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/6099
Choose a head ref
  • 2 commits
  • 24 files changed
  • 2 contributors

Commits on Dec 11, 2025

  1. Skip publishing the tables specified in EXCEPT TABLE.

    A new "EXCEPT TABLE" clause for CREATE/ALTER PUBLICATION allows one or
    more tables to be excluded. The publisher will not send the data of
    excluded tables to the subscriber.
    
    The new syntax allows specifying excluded relations when creating or altering
    a publication. For example:
    CREATE PUBLICATION pub1 FOR ALL TABLES EXCEPT TABLE (t1,t2);
    
    A new column "prexcept" is added to table "pg_publication_rel", to flag
    the relations that the user wants to exclude from the publications.
    
    pg_dump is updated to identify and dump the excluded tables of the publications.
    
    The psql \d family of commands can now display excluded tables. e.g. psql
    \dRp+ variant will now display associated "except tables" if any.
    
    Bump catalog version.
    skkyal authored and Commitfest Bot committed Dec 11, 2025
    Configuration menu
    Copy the full SHA
    cce8659 View commit details
    Browse the repository at this point in the history
  2. [CF 6099] v31 - Support EXCEPT tables and EXCEPT (column-list) in pub…

    …lications
    
    This branch was automatically generated by a robot using patches from an
    email thread registered at:
    
    https://commitfest.postgresql.org/patch/6099
    
    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/CANhcyEV_EVi5cgJ6WPvmeVAqjCS7Of+VAWuRHZtsVf8PQb_z7g@mail.gmail.com
    Author(s): Shlok Kyal
    Commitfest Bot committed Dec 11, 2025
    Configuration menu
    Copy the full SHA
    580d4ed View commit details
    Browse the repository at this point in the history
Loading