Re: PostgreSQL does CAST implicitely between int and a domain derived from int

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: PostgreSQL does CAST implicitely between int and a domain derived from int
Дата
Msg-id 28629.1251567848@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: PostgreSQL does CAST implicitely between int and a domain derived from int  (Jean-Michel Pouré <jm@poure.com>)
Ответы Re: PostgreSQL does CAST implicitely between int and a domain derived from int  (Jean-Michel Pouré <jm@poure.com>)
Список pgsql-performance
Jean-Michel =?ISO-8859-1?Q?Pour=E9?= <jm@poure.com> writes:
> In Drupal database, we have two types:
> CREATE DOMAIN int_unsigned
>   AS integer
> CONSTRAINT int_unsigned_check CHECK ((VALUE >= 0));

> Why do queries cast between integer and int_unsigned?

That domain doesn't have any operators of its own.  To compare to
another value, or use an index, you have to cast it to integer which
does have operators.  It's a no-op cast, but logically necessary.

            regards, tom lane

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

Предыдущее
От: Jean-Michel Pouré
Дата:
Сообщение: Re: PostgreSQL does CAST implicitely between int and a domain derived from int
Следующее
От: David Rees
Дата:
Сообщение: Re: What exactly is postgres doing during INSERT/UPDATE ?