Re: Confusion about the range types

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Confusion about the range types
Дата
Msg-id 3452152.1673107986@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Confusion about the range types  (Dino Maric <dinom@hey.com>)
Ответы Re: Confusion about the range types
Список pgsql-bugs
Dino Maric <dinom@hey.com> writes:
> When I insert range like this:
> INSERT INTO public.tests
> VALUES (int4range(7,8,'[]'))
> After when querying table my return value for this column is not [7,8]
> but it is [7,9).
> I found this behaviour confusing, because I want to insert 7-8 ranges
> (including upper value) and then present that range to a user.

This is the effect of canonicalization, as explained here:

https://www.postgresql.org/docs/current/rangetypes.html#RANGETYPES-DISCRETE

If you don't like it you can make a range type with a different
canonicalization function, or no such function, but that might
have odd effects on the behavior of range comparison operators.

            regards, tom lane



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

Предыдущее
От: Dino Maric
Дата:
Сообщение: Confusion about the range types
Следующее
От: Dino Maric
Дата:
Сообщение: Re: Confusion about the range types