rangesel() bugs on basic comparison operators with an empty range

Поиск
Список
Период
Сортировка
От Emre Hasegeli
Тема rangesel() bugs on basic comparison operators with an empty range
Дата
Msg-id CAE2gYzw0Z6r2oBXxmXsUD3FA4pAhbky-nfuqSqdf1RFXDinPCg@mail.gmail.com
обсуждение исходный текст
Ответы Re: rangesel() bugs on basic comparison operators with an empty range  (Emre Hasegeli <emre@hasegeli.com>)
Список pgsql-bugs
I found a few bugs on the selectivity estimation function for
the range types, rangesel() for empty ranges.

# create table a (b int4range);
CREATE TABLE

# select * from a where b < 'empty';
ERROR:  unexpected operator 3884

# select * from a where b >= 'empty';
ERROR:  unexpected operator 3886

Patch attached.

Вложения

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #12694: crash if the number of result rows is lower than gin_fuzzy_search_limit
Следующее
От: Emre Hasegeli
Дата:
Сообщение: Re: rangesel() bugs on basic comparison operators with an empty range