Re: Where is the tsrange() function documented?

Поиск
Список
Период
Сортировка
От Alban Hertroys
Тема Re: Where is the tsrange() function documented?
Дата
Msg-id ECD3A1D3-B205-4BA5-948F-A9AF3CB6AB7B@gmail.com
обсуждение исходный текст
Ответ на Re: Where is the tsrange() function documented?  (Bryn Llewellyn <bryn@yugabyte.com>)
Список pgsql-general
> On 19 Oct 2021, at 7:11, Bryn Llewellyn <bryn@yugabyte.com> wrote:
>
> By the way, I was surprised when I tried this:
>
> with c as (
>   select
>     '2000-01-01'::timestamp as t1,
>     '2000-01-10'::timestamp as t2,
>     '2000-01-20'::timestamp as t3)
> select
>   ( tsrange(t1, t3, '[)') && tsrange(t2, t2, '[)') )::text as "range result",
>   (        (t1, t3)    overlaps     (t2, t2)       )::text as "overlaps result"
> from c;
>
> and got this:
>
>  range result | overlaps result
> --------------+-----------------
>  false        | true
>
> I can't find anything, neither on the page in question here on Range Types nor in the doc on the overlaps operator,
aboutthe semantics for when a duration collapses to an instant. Am I missing this too? 

Your mistake is in how you defined an instant as a range:

with c as (
  select
    '2000-01-01'::timestamp as t1,
    '2000-01-10'::timestamp as t2,
    '2000-01-20'::timestamp as t3)
select
  tsrange(t2, t2, '[)') as empty
, tsrange(t2, t2, '[]') as instant
, ( tsrange(t1, t3, '[)') && tsrange(t2, t2, '[)') )::text as "empty range result"
, ( tsrange(t1, t3, '[)') && tsrange(t2, t2, '[]') )::text as "instant range result"
from c;
 empty |                    instant                    | empty range result | instant range result
-------+-----------------------------------------------+--------------------+----------------------
 empty | ["2000-01-10 00:00:00","2000-01-10 00:00:00"] | false              | true
(1 row)

As I read it, an empty range is not considered to overlap anything, regardless of ‘when' it was defined; it gets
normalisedto ‘empty’. 

See also the examples in section 8.17.5 for the difference between an empty range and a single point range (what you
callan instant). 

Regards,

Alban Hertroys
--
There is always an exception to always.







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

Предыдущее
От: Pawan Sharma
Дата:
Сообщение: spannerdb migration to PostgreSQL
Следующее
От: Mladen Gogala
Дата:
Сообщение: Re: Force re-compression with lz4