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

Commits on Aug 3, 2025

  1. add function argument name to substr.

    HEAD
    \df substr
                                List of functions
       Schema   |  Name  | Result data type |   Argument data types   | Type
    ------------+--------+------------------+-------------------------+------
     pg_catalog | substr | bytea            | bytea, integer          | func
     pg_catalog | substr | bytea            | bytea, integer, integer | func
     pg_catalog | substr | text             | text, integer           | func
     pg_catalog | substr | text             | text, integer, integer  | func
    
    with patch
     \df substr
                                         List of functions
       Schema   |  Name  | Result data type |            Argument data types            | Type
    ------------+--------+------------------+-------------------------------------------+------
     pg_catalog | substr | bytea            | bytes bytea, start integer                | func
     pg_catalog | substr | bytea            | bytes bytea, start integer, count integer | func
     pg_catalog | substr | text             | string text, start integer                | func
     pg_catalog | substr | text             | string text, start integer, count integer | func
    
    discussion: https://postgr.es/m/CACJufxHTBkymh06D4mGKNe1YfRNFN+gFBybmygWk=PtMqu00LQ@mail.gmail.com
    jianhe-fun authored and Commitfest Bot committed Aug 3, 2025
    Configuration menu
    Copy the full SHA
    2b53d98 View commit details
    Browse the repository at this point in the history
  2. add function argument name to function substring

    HEAD
    \df substr
                                 List of functions
       Schema   |   Name    | Result data type |   Argument data types   | Type
    ------------+-----------+------------------+-------------------------+------
     pg_catalog | substring | bit              | bit, integer            | func
     pg_catalog | substring | bit              | bit, integer, integer   | func
     pg_catalog | substring | bytea            | bytea, integer          | func
     pg_catalog | substring | bytea            | bytea, integer, integer | func
     pg_catalog | substring | text             | text, integer           | func
     pg_catalog | substring | text             | text, integer, integer  | func
     pg_catalog | substring | text             | text, text              | func
     pg_catalog | substring | text             | text, text, text        | func
    
    with patch
    \df substring
      Schema   |   Name    | Result data type |               Argument data types                | Type
    ------------+-----------+------------------+--------------------------------------------------+------
     pg_catalog | substring | bit              | bits bit, start integer, count integer           | func
     pg_catalog | substring | bytea            | bytes bytea, start integer                       | func
     pg_catalog | substring | bytea            | bytes bytea, start integer, count integer        | func
     pg_catalog | substring | bit              | string bit, start integer                        | func
     pg_catalog | substring | text             | string text, pattern text                        | func
     pg_catalog | substring | text             | string text, pattern text, escape_character text | func
     pg_catalog | substring | text             | string text, start integer                       | func
     pg_catalog | substring | text             | string text, start integer, count integer        | func
    (8 rows)
    
    discussion: https://postgr.es/m/CACJufxHTBkymh06D4mGKNe1YfRNFN+gFBybmygWk=PtMqu00LQ@mail.gmail.com
    jianhe-fun authored and Commitfest Bot committed Aug 3, 2025
    Configuration menu
    Copy the full SHA
    1075c0d View commit details
    Browse the repository at this point in the history
  3. [CF 5524] v6 - add function argument name to substring and substr

    This branch was automatically generated by a robot using patches from an
    email thread registered at:
    
    https://commitfest.postgresql.org/patch/5524
    
    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/CACJufxHbWiZLwzKs6k4+w=UjA_wDEEhWgH2fpUexxgvHOP_OWA@mail.gmail.com
    Author(s): Jian He
    Commitfest Bot committed Aug 3, 2025
    Configuration menu
    Copy the full SHA
    d42492e View commit details
    Browse the repository at this point in the history
Loading