Re: backend crash on DELETE, reproducible locally

From: Ondřej Bouda <obouda(at)email(dot)cz>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>, pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: backend crash on DELETE, reproducible locally
Date: 2018-11-06 20:36:08
Message-ID: 134c09b5-3eb0-bafd-2aeb-f383e1e21b8a@email.cz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-hackers

> Hm, what are the data types of those columns?

scheduletemplate_id bigint NOT NULL,
period_day smallint NOT NULL,
timerange timerange NOT NULL,

where timerange is defined as follows:
CREATE TYPE public.timerange AS RANGE
(
SUBTYPE=time,
SUBTYPE_OPCLASS = time_ops
);

> And I assume you've got btree_gist installed?

Yes, version 1.5.

Regards,
Ondřej Bouda

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Ron 2018-11-06 20:46:20 Idle query that's not "<IDLE>"?
Previous Message Ron 2018-11-06 20:35:22 Re: Fwd: Log file

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2018-11-06 21:03:35 Re: backend crash on DELETE, reproducible locally
Previous Message Ondřej Bouda 2018-11-06 20:19:31 Re: backend crash on DELETE, reproducible locally