Where are stored information about user-defined types? Are there some tables which contain infos about the fields of a user-defined composite type, their names, etc. ?

Regards,
Antonio

link|improve this question

76% accept rate
feedback

1 Answer

up vote 2 down vote accepted

The catalog pg_type stores information about data types. Base types and enum types (scalar types) are created with CREATE TYPE, and domains with CREATE DOMAIN.

More information about pg_type plz visit http://www.postgresql.org/docs/9.0/static/catalog-pg-type.html

link|improve this answer
Thanks for your reply. pg_type does not store information about fields that costitute composite types. Do you know, if it exists, which table store this kind of information? – Antonio F. Aug 8 '11 at 9:23
I'm not sure if I understand your question very well, if you want to know the information about all the columns of a table , you can query the catalog pg_attribute。(postgresql.org/docs/9.0/static/catalog-pg-attribute.html) – francs Aug 9 '11 at 1:24
By the way, pg_type.typtype is b for a base type, c for a composite type (e.g., a table's row type), d for a domain, e for an enum type, or p for a pseudo-type. See also typrelid and typbasetype – francs Aug 9 '11 at 1:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.