From: | "Dave Olszewski" <cxreg(at)pobox(dot)com> |
---|---|
To: | pgsql-bugs(at)postgresql(dot)org |
Subject: | BUG #5323: plperl and plperlu interaction segfaults |
Date: | 2010-02-11 18:44:03 |
Message-ID: | 201002111844.o1BIi33v060646@wwwmaster.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
The following bug has been logged online:
Bug reference: 5323
Logged by: Dave Olszewski
Email address: cxreg(at)pobox(dot)com
PostgreSQL version: 8.3.9
Operating system: Linux
Description: plperl and plperlu interaction segfaults
Details:
Creating the following functions reliably segfaults Postgres for me:
CREATE LANGUAGE 'plperl';
CREATE LANGUAGE 'plperlu';
CREATE OR REPLACE FUNCTION test_one() RETURNS TRIGGER AS $$ $$ language
'plperlu';
CREATE OR REPLACE FUNCTION test_two() RETURNS TRIGGER AS $$ $$ language
'plperl';
CREATE OR REPLACE FUNCTION test_two() RETURNS TRIGGER AS $$ $$ language
'plperl';
A possibly interesting note is that if I create "two, one, two two" it will
not crash, but just 'one, two two" will.
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2010-02-11 18:58:32 | Re: BUG #5314: Error in nested composite types in plpgsql. |
Previous Message | Robert Haas | 2010-02-11 18:21:08 | Re: BUG #5314: Error in nested composite types in plpgsql. |