From: | Fujii Masao <masao(dot)fujii(at)gmail(dot)com> |
---|---|
To: | TAKATSUKA Haruka <harukat(at)sraoss(dot)co(dot)jp> |
Cc: | pgsql-bugs <pgsql-bugs(at)postgresql(dot)org> |
Subject: | Re: BUG #11335: an invalid prepare statement causes crash at log_statement = 'mod' or 'ddl'. |
Date: | 2014-09-04 17:33:48 |
Message-ID: | CAHGQGwHhiBgw8zqi5S2CVwqNcZ_L4sMBivutbhwPufQEqvbpJA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
On Thu, Sep 4, 2014 at 3:55 AM, Fujii Masao <masao(dot)fujii(at)gmail(dot)com> wrote:
> On Tue, Sep 2, 2014 at 8:16 PM, <harukat(at)sraoss(dot)co(dot)jp> wrote:
>> The following bug has been logged on the website:
>>
>> Bug reference: 11335
>> Logged by: invalid prepare statement causes crash at log_statement = 'mod' or 'ddl'.
>> Email address: harukat(at)sraoss(dot)co(dot)jp
>> PostgreSQL version: 9.3.5
>> Operating system: CentOS 6.2 (64bit / gcc 4.4.7)
>> Description:
>>
>>
>> setting:
>> log_statement = 'mod' # or 'ddl'
>>
>> reproduction client code:
>> <?php
>> require_once 'MDB2.php';
>> $con1 =& MDB2::connect("pgsql://postgres(at)localhost/db1");
>> if (PEAR::isError($con1)) { die($con1->getMessage()); }
>> $sth = $con1->prepare("");
>> if (PEAR::isError($sth)) { die($sth->getMessage()); }
>> $sth->execute();
>> ?>
>>
>> log messages:
>> 2014-09-02 19:41:57 JST 9453 LOG: server process (PID 10372) was
>> terminated by signal11: Segmentation fault
>> 2014-09-02 19:41:57 JST 9453 DETAIL: Failed process was running:
>> EXECUTE mdb2_statement_pgsql_9cc7dc53dfc30b3c2b937c650346f586
>>
>> This occur in 9.3.5 and 9.1.14. (It probably occur at any versions.)
>> I tested that the following fix prevent this crash.
>
> Thanks for reporting the bug! This segmentation fault could reproduce
> even on my machine. Barring any objection, I will apply the change that
> you suggested.
Done.
Regards,
--
Fujii Masao
From | Date | Subject | |
---|---|---|---|
Next Message | Stephen Frost | 2014-09-04 19:14:56 | Re: BUG #11350: ALTER SYSTEM is not DDL? |
Previous Message | Rainer Tammer | 2014-09-04 15:49:55 | Re: PostgreSql x AIX 7.1 |