Re: Bug? 8.0 does not use partial index

Поиск
Список
Период
Сортировка
От John Hansen
Тема Re: Bug? 8.0 does not use partial index
Дата
Msg-id 5066E5A966339E42AA04BA10BA706AE5622F@rodrick.geeknet.com.au
обсуждение исходный текст
Ответ на Bug? 8.0 does not use partial index  (Palle Girgensohn <girgen@pingpong.net>)
Ответы Re: Bug? 8.0 does not use partial index  (Palle Girgensohn <girgen@pingpong.net>)
Список pgsql-hackers
> create index foo on group_data(this_group_id) where group_id is null;

Try this instead;

create index foo on group_data(this_group_id) where nullvalue(group_id);

And

Select * from group_data where this_group_id = 46 and nullvalue(group_id);

... John


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

Предыдущее
От: Palle Girgensohn
Дата:
Сообщение: Bug? 8.0 does not use partial index
Следующее
От: Tom Lane
Дата:
Сообщение: Re: some linker troubles with rc5 on sun studio 9 ...