Re: Server process crash - Segmentation fault

From: Leif Jensen <leif(at)crysberg(dot)dk>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>, pgsql-general <pgsql-general(at)postgresql(dot)org>, pgsql-bugs(at)postgresql(dot)org
Subject: Re: Server process crash - Segmentation fault
Date: 2014-05-08 13:59:09
Message-ID: 7070852.11378.1399557549199.JavaMail.root@quick
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs pgsql-general

Hi Tom,

I already compiled postgreSQL myself and now using 9.3.4, so I would very much like a patch. Where can I find that ?

Leif

----- Original Message -----
> Leif Jensen <leif(at)crysberg(dot)dk> writes:
> > Could it be related to the OFFSET part of the statement ? I have
> > another query on the same table without OFFSET, which seems to
> > work fine.
>
> Yeah, the specific code path here involves executing a stable (or
> possibly
> immutable) SQL function in a LIMIT or OFFSET clause. I was able to
> reproduce the crash like so:
>
> create function foo(int) returns int as 'select $1 limit 1'
> language sql stable;
>
> begin;
>
> declare c cursor for select * from int8_tbl limit foo(3);
>
> select * from c;
>
> move backward all in c;
>
> select * from c;
>
> commit;
>
> You might be able to dodge the problem if you can make the SQL
> function
> inline-able (the LIMIT 1 in my example is just to prevent that from
> happening). A less appealing alternative is to mark the function
> VOLATILE, which I think would also prevent this crash, but might have
> negative performance consequences.
>
> If you don't mind building your own PG then you could grab the actual
> fix
> from our git repo; I should have something committed before long.
>
> regards, tom lane

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2014-05-08 14:19:01 Re: Server process crash - Segmentation fault
Previous Message Akshay Joshi 2014-05-08 09:04:04 Re: [pgadmin-hackers] Re: BUG #10250: pgAdmin III 1.16.1 stores unescaped plaintext password

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2014-05-08 14:19:01 Re: Server process crash - Segmentation fault
Previous Message Adrian Klaver 2014-05-08 13:36:08 Re: SSL Compression - doesn't work?