Re: GiST for range types (was Re: Range Types - typo + NULL string constructor)

Поиск
Список
Период
Сортировка
От Alexander Korotkov
Тема Re: GiST for range types (was Re: Range Types - typo + NULL string constructor)
Дата
Msg-id CAPpHfdsDRXz5KS1-67KatDzpmQfKYsiXp6X0edKEwxiBnfeczg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: GiST for range types (was Re: Range Types - typo + NULL string constructor)  (Alexander Korotkov <aekorotkov@gmail.com>)
Ответы Re: GiST for range types (was Re: Range Types - typo + NULL string constructor)
Список pgsql-hackers
During work on gist for range types I've faced with following problem:

test=# select 'empty'::int4range !?;
ERROR:  operator does not exist: int4range !?
LINE 1: select 'empty'::int4range !?;
                                  ^
HINT:  No operator matches the given name and argument type(s). You might need to add explicit type casts.

test=# select 'empty'::int4range ?;
ERROR:  operator does not exist: int4range ?
LINE 1: select 'empty'::int4range ?;
                                  ^
HINT:  No operator matches the given name and argument type(s). You might need to add explicit type casts.

So, !? and ? operators are mentioned in documentation, but don't present in catalog. Are them just missed in the catalog or there is some more serious problem?
 
------
With best regards,
Alexander Korotkov. 

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

Предыдущее
От: Robert Haas
Дата:
Сообщение: Re: synchronous commit vs. hint bits
Следующее
От: Tom Lane
Дата:
Сообщение: Re: GiST for range types (was Re: Range Types - typo + NULL string constructor)