pgsql: Add pg_basetype() function to extract a domain's base type.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add pg_basetype() function to extract a domain's base type.
Date: 2024-03-30 17:57:24
Message-ID: E1rqcxI-006WjT-EO@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add pg_basetype() function to extract a domain's base type.

This SQL-callable function behaves much like our internal utility
function getBaseType(), except it returns NULL rather than failing for
an invalid type OID. (That behavior is modeled on our experience with
other catalog-inquiry functions such as the ACL checking functions.)
The key advantage over doing a join to pg_type is that it will loop
as needed to find the bottom base type of a nest of domains.

Steve Chavez, reviewed by jian he and others

Discussion: https://postgr.es/m/CAGRrpzZSX8j=MQcbCSEisFA=ic=K3bknVfnFjAv1diVJxFHJvg@mail.gmail.com

Branch
------
master

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

Modified Files
--------------
doc/src/sgml/func.sgml | 24 +++++++++++++++++++
src/backend/utils/adt/misc.c | 45 ++++++++++++++++++++++++++++++++++++
src/include/catalog/catversion.h | 2 +-
src/include/catalog/pg_proc.dat | 3 +++
src/test/regress/expected/domain.out | 25 ++++++++++++++++++++
src/test/regress/sql/domain.sql | 12 ++++++++++
6 files changed, 110 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Alexander Korotkov 2024-03-30 20:54:54 pgsql: Generalize relation analyze in table AM interface
Previous Message Alvaro Herrera 2024-03-30 13:20:06 pgsql: Stabilize postgres_fdw test