Domain Constraints

Поиск
Список
Период
Сортировка
От Rod Taylor
Тема Domain Constraints
Дата
Msg-id 1036774207.15373.107.camel@jester
обсуждение исходный текст
Список pgsql-hackers
Any thoughts on how to display the domain constraints in psql?


a=# create domain d as integer not null check (value > 4);
CREATE DOMAIN
a=# create domain f as text check (value > 'bob') check (value < 'zip');
CREATE DOMAIN
a=# \dD         List of domainsSchema | Name |  Type   | Modifier 
--------+------+---------+----------public | d    | integer | not nullpublic | f    | text    | 
(2 rows)

Any thoughts on how to display the check constraints?

--  Rod Taylor



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

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: [PORTS] PostgreSQL supported platform report and a
Следующее
От: Stephan Szabo
Дата:
Сообщение: Question about row visibility after locks