Re: 8.3.0 backend segfaults

From: "Alex Hunsaker" <badalex(at)gmail(dot)com>
To: "Tom Lane" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: 8.3.0 backend segfaults
Date: 2008-03-12 06:11:05
Message-ID: 34d269d40803112311i7d669ec9g847d227ded0c825f@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Oops we actually use DBI->prepare_cached() not DBI->prepare() which to
my understanding should be roughly equivalent to (because of
Apache::DBI):

prepare query ....;
begin;
execute query;
commit;
(next page load)
begin;
execute query;
commit;

I can turn that off and only use DBI->prepare() as a test. Or heck
just cut DBI->prepare() out and just quote everything and send them
through using DBI->do() instead. That is if you think that could be
the culprit.

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2008-03-12 06:19:29 Re: 8.3.0 backend segfaults
Previous Message Alex Hunsaker 2008-03-12 05:45:47 Re: 8.3.0 backend segfaults