BUG #13579: Server crashes after executing plpythonu function - Mailing list pgsql-bugs

From ppmichalakk@gmail.com
Subject BUG #13579: Server crashes after executing plpythonu function
Date
Msg-id 20150819144851.31530.41021@wrigleys.postgresql.org
Whole thread Raw
Responses Re: BUG #13579: Server crashes after executing plpythonu function  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: BUG #13579: Server crashes after executing plpythonu function  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      13579
Logged by:          Paweł Michalak
Email address:      ppmichalakk@gmail.com
PostgreSQL version: 9.4.4
Operating system:   Debian 4.6.3-14
Description:

[pmichalak@asdasd ~] $ psql
psql (9.4.4)
Type "help" for help.
pmichalak=# create function a() returns setof record as $$
 return { 'a': 2, 'b': 3 }
$$ language plpythonu;
CREATE FUNCTION
pmichalak=# select * from a() as (b integer, c integer);
ERROR:  input of anonymous composite types is not implemented
CONTEXT:  while creating return value
PL/Python function "a"
pmichalak=# select * from a() as (b integer, c integer);
server closed the connection unexpectedly
        This probably means the server terminated abnormally
        before or while processing the request.
The connection to the server was lost. Attempting reset: Failed.

Server log:
STATEMENT:  select * from a() as (b integer, c integer);
ERROR:  syntax error at or near "," at character 30
STATEMENT:  select * from q() as (b integer, c integer);
LOG:  server process (PID 14767) was terminated by signal 11: Segmentation
fault
DETAIL:  Failed process was running: select * from a() as (b integer, c
integer);
LOG:  terminating any other active server processes

pgsql-bugs by date:

Previous
From: 德哥
Date:
Subject: Re: BUG #13578: use cipher=NULL-SHA256 error when connect
Next
From: Tom Lane
Date:
Subject: Re: BUG #13579: Server crashes after executing plpythonu function