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=k3bknvfnfjav1divjxfh...@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(-)

Reply via email to