Re: using index on comparison with bit-operation?

Поиск
Список
Период
Сортировка
От Bruno Wolff III
Тема Re: using index on comparison with bit-operation?
Дата
Msg-id 20040408214140.GA32191@wolff.to
обсуждение исходный текст
Ответ на using index on comparison with bit-operation?  (geek_1981@yahoo.de (Michael Groth))
Ответы Re: using index on comparison with bit-operation?  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-hackers
On Wed, Apr 07, 2004 at 06:01:03 -0700, Michael Groth <geek_1981@yahoo.de> wrote:
> hi,
> 
> is it possible to use an index on the expression '(table_1.field &
> table_2.field)::int > 0' ?
> 
> here's the whole query:
> 
> SELECT 
>     COUNT(*)
> FROM
>     users AS users
> JOIN
>     search_profile AS search_profile ON
> (search_profile.bin_matching_field_0 &
> users.bin_matching_field_0)::int > 0
> WHERE
>     users.id = 190

In 7.4 you can create indexes on expressions.


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

Предыдущее
От: "Dann Corbit"
Дата:
Сообщение: Re: Small suggestion on build script
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: using index on comparison with bit-operation?