Re: BUG #16122: segfault pg_detoast_datum (datum=0x0) at fmgr.c:1833 numrange query

From: Adam Scott <adam(dot)c(dot)scott(at)gmail(dot)com>
To: Michael Paquier <michael(at)paquier(dot)xyz>
Cc: Tomas Vondra <tomas(dot)vondra(at)2ndquadrant(dot)com>, pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #16122: segfault pg_detoast_datum (datum=0x0) at fmgr.c:1833 numrange query
Date: 2019-11-19 02:22:11
Message-ID: CA+s62-OQg3YFTE830o14eFWKdsGy2wKR4Z7aK_PbK4rdM8Y1Gg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Great! Thank you Michael and Tomas!

Maybe a clue to the issue, why does a numrange need to be detoasted since
that is for large strings?

Let me know how I can further help.

Cheers,
Adam

On Mon, Nov 18, 2019 at 5:48 PM Michael Paquier <michael(at)paquier(dot)xyz> wrote:

> On Mon, Nov 18, 2019 at 03:59:14PM -0800, Adam Scott wrote:
> > It was bugging out with an empty table but it seems intermittent. A
> > successful query followed by the one above will not fail sometimes; hence
> > the need for a from-scratch startup instance of postgres.
>
> Okay, that has proved to help a lot. I have restored the dump, and
> after an analyze on natica_hdu_test I can see the failure
> immediately.
>
> I have also extracted a small test case able to reproduce the failure.
> That's actually pretty close to the scenarios I was playing with
> upthread, still I missed it:
> CREATE TABLE rangetab (a numrange);
> INSERT INTO rangetab
> SELECT ('['|| (45.0 - a::numeric/10000000) || ',' ||
> (45.1 + a::numeric/10000000) || ')')::numrange
> FROM generate_series(1,1000) as a;
> ANALYZE rangetab;
> SELECT a FROM rangetab
> WHERE a <@ '[89.9999998611111,90.0000001388889)';
>
> I can easily reproduce the failure on HEAD, REL_12_STABLE and
> REL_11_STABLE. On 10, I could not. But now that we have a test case
> that's only a matter of time.
> --
> Michael
>

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Michael Paquier 2019-11-19 03:04:28 Re: BUG #16122: segfault pg_detoast_datum (datum=0x0) at fmgr.c:1833 numrange query
Previous Message Michael Paquier 2019-11-19 01:48:27 Re: BUG #16122: segfault pg_detoast_datum (datum=0x0) at fmgr.c:1833 numrange query