Re: User-defined types

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: User-defined types
Дата
Msg-id 15396.1144436588@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: User-defined types  ("codeWarrior" <gpatnude@hotmail.com>)
Список pgsql-general
"codeWarrior" <gpatnude@hotmail.com> writes:
> BTW: I was thinking more along the lines of:

> SELECT PT.*, PA.* FROM pg_attribute PA
> JOIN pg_type PT ON PA.attrelid = PT.typrelid
> JOIN pg_class PC ON PC.oid = PA.attrelid
> WHERE PT.typnamespace = 2200 AND PA.attnum > 0 AND PC.relkind IN ('r', 'c',
> 'v');

> Perhaps this should be made into a view in the information_schema.....

It seems like the COLUMN_UDT_USAGE view ought to handle this ...
except perhaps that COLUMN_UDT_USAGE for some reason substitutes the
underlying type if the column type is a domain.  I can't see the
justification for that --- Peter, what part of the spec led you to do
it that way?  There is probably more than one way to define the spec's
notion of "user-defined types" in terms of Postgres notions, but I
don't see where you got this particular definition.

            regards, tom lane

В списке pgsql-general по дате отправления:

Предыдущее
От: "codeWarrior"
Дата:
Сообщение: Re: User-defined types
Следующее
От: "Yudie Pg"
Дата:
Сообщение: Re: Running Command Line From Trigger?