Re: Problem with Create Domain example

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Problem with Create Domain example
Дата
Msg-id 20050501011459.GD24028@dcc.uchile.cl
обсуждение исходный текст
Ответ на Problem with Create Domain example  (Robert Treat <xzilla@users.sourceforge.net>)
Ответы Re: Problem with Create Domain example
Список pgsql-patches
On Sat, Apr 30, 2005 at 06:12:27PM -0400, Robert Treat wrote:

> --- 167,174 ----
>   <programlisting>
>   CREATE DOMAIN us_postal_code AS TEXT
>   CHECK(
> !    VALUE ~ '^\\d{5}$'
> ! OR VALUE ~ '^\\d{5}-\\d{4}$'
>   );

Huh, why not

VALUE ~ '^\\d{5}(-\\d{4})?$'

?

--
Alvaro Herrera (<alvherre[@]dcc.uchile.cl>)
"Cuando no hay humildad las personas se degradan" (A. Christie)

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

Предыдущее
От: Robert Treat
Дата:
Сообщение: Problem with Create Domain example
Следующее
От: Robert Treat
Дата:
Сообщение: Re: Problem with Create Domain example