DESCRIBE for composite type?

Поиск
Список
Период
Сортировка
От Nikita Koselev
Тема DESCRIBE for composite type?
Дата
Msg-id 24e54d80810042354g27d6e589v5a8915134423af6a@mail.gmail.com
обсуждение исходный текст
Ответы Re: DESCRIBE for composite type?  ("Richard Broersma" <richard.broersma@gmail.com>)
Список pgsql-novice
I've created an composite type.
--
CREATE TYPE requirement_vo AS (
 name VARCHAR(20),
 description VARCHAR(20),
 requirement_id INT,
 requirement_type_id INT,
 priority_id INT,
 necessity_id INT,
 lower_limit DOUBLE PRECISION,
 upper_limit DOUBLE PRECISION
 );
--
How can I get description of this composite type later (field names
and values)? Is there something in pgsql like DESCRIBE statement in
oracle?

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

Предыдущее
От: "Nikita Koselev"
Дата:
Сообщение: array of composite types - how can I launch this function with an array of composite values
Следующее
От: "Nikita Koselev"
Дата:
Сообщение: accessing composite value's field in function