pgsql: Fix recent accidental omission in pg_proc.dat

From: David Rowley <drowley(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix recent accidental omission in pg_proc.dat
Date: 2022-12-24 00:19:47
Message-ID: E1p8sGR-0005PL-IF@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix recent accidental omission in pg_proc.dat

ed1a88dda added support functions for the ntile(), percent_rank() and
cume_dist() window functions but neglected to actually add these support
functions to the pg_proc entry for the corresponding window function.

Also, take this opportunity to add these window functions to one of the
regression tests added in ed1a88dda to give the support functions a little
bit of exercise. If I'd done that in the first place then the omission
would have been more obvious.

Bump the catversion, again.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/b5aff9255700b0b3155a4d2be865b6a776c2bda4

Modified Files
--------------
src/include/catalog/catversion.h | 2 +-
src/include/catalog/pg_proc.dat | 14 ++++++++------
src/test/regress/expected/window.out | 8 +++++++-
src/test/regress/sql/window.sql | 8 +++++++-
4 files changed, 23 insertions(+), 9 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2022-12-24 20:01:29 pgsql: Make the numeric-OID cases of regprocin and friends be non-throw
Previous Message Alvaro Herrera 2022-12-23 16:52:21 Re: pgsql: Doc: Explain about Column List feature.