Re: Struggling with EXCLUDE USING gist

Поиск
Список
Период
Сортировка
От Laura Smith
Тема Re: Struggling with EXCLUDE USING gist
Дата
Msg-id CVf1VeIE_ZXsMaqL_JK89eOSEZJ21pDZCbQK77ptxEUHsUochHrE47VKoXkWEPEKKxhW-85NP_282f4Q-lir2TNV09diUQYuTBFNSUnVsyE=@protonmail.ch
обсуждение исходный текст
Ответ на Re: Struggling with EXCLUDE USING gist  (Mark Dilger <mark.dilger@enterprisedb.com>)
Ответы Re: Struggling with EXCLUDE USING gist  (Mark Dilger <mark.dilger@enterprisedb.com>)
Список pgsql-general


Sent with ProtonMail Secure Email.

‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Friday, 4 June 2021 18:45, Mark Dilger <mark.dilger@enterprisedb.com> wrote:

> > On Jun 4, 2021, at 9:47 AM, Laura Smith n5d9xq3ti233xiyif2vp@protonmail.ch wrote:
> > CREATE TABLE test (
> > t_val text not null,
> > t_version text unique not null default gen_random_uuid() ,
> > t_range tstzrange not null default tstzrange('-infinity','infinity'),
> > EXCLUDE USING gist (t_val WITH=, t_range WITH &&) DEFERRABLE INITIALLY DEFERRED
> > );
>
> <snip>
>
> > INSERT INTO test(t_val) values(p_val);
>
> This will insert a t_range of ('-infinity','infinity'), won't it? Wouldn't you want to instead insert with t_range
startingaround now() rather than starting at -infinity? 
>
> —
> Mark Dilger
> EnterpriseDB: http://www.enterprisedb.com
> The Enterprise PostgreSQL Company


That seems to have done the trick. Thanks again Mark,




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

Предыдущее
От: Laura Smith
Дата:
Сообщение: Re: Struggling with EXCLUDE USING gist
Следующее
От: Mark Dilger
Дата:
Сообщение: Re: Struggling with EXCLUDE USING gist