Re: Crash in 9.4 Beta when partially collapsing left outer joins - Mailing list pgsql-general

From Michael Paquier
Subject Re: Crash in 9.4 Beta when partially collapsing left outer joins
Date
Msg-id CAB7nPqSem2UEudXpmSBeawALaMc5mwR04XZSYNNFudAyvGhEWQ@mail.gmail.com
Whole thread Raw
In response to Crash in 9.4 Beta when partially collapsing left outer joins  (lists@benjamindsmith.com)
Responses Re: Crash in 9.4 Beta when partially collapsing left outer joins  (Michael Paquier <michael.paquier@gmail.com>)
List pgsql-general
On Tue, Sep 9, 2014 at 6:36 AM,  <lists@benjamindsmith.com> wrote:
> What other information should I provide? We have the machine available if
> necessary.
This can be reproduced without especially LEFT OUTER JOIN, and system
crashes as long as index path is taken in planner, and that WHERE
clause uses a given combination of OR and AND like the one in the
query given. Here is a more simple example:
create table aa (a int);
create index aai on aa(a);
select a1.a from aa a1, aa a2 where a1.a = 0 or (a1.a = 0 or a1.a = 1)
and a2.a = 0;
Some bisecting is showing as well that the commit at the origin of the
regression is f343a88.
Regards,
--
Michael


pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Crash in 9.4 Beta when partially collapsing left outer joins
Next
From: Vinayak
Date:
Subject: Re: CONCAT function