Re: [BUG] PostgreSQL 7.0.3 backend dumps core.
Tom Lane <tgl@sss.pgh.pa.us>
From: Tom Lane <tgl@sss.pgh.pa.us>
To: Alan Turner <alan@suburbia.com.au>
Cc: pgsql-bugs@postgresql.org
Date: 2000-11-28T15:22:52Z
Lists: pgsql-bugs
Alan Turner <alan@suburbia.com.au> writes: > test=# CREATE FUNCTION "f2" ( ) RETURNS magic AS ' > test'# DECLARE > test'# x RECORD; > test'# BEGIN > test'# x.one := 1; > test'# x.two := 2; > test'# RETURN x; > test'# END; > test'# ' LANGUAGE 'plpgsql'; > CREATE > test=# select f2(); > pqReadData() -- backend closed the channel unexpectedly. I think this coding should be rejected, but evidently it's not. My understanding of "record" in plpgsql is that it's just a placeholder name for a tuple type determined elsewhere. In this situation the exact type of x is never determined, and so you shouldn't be able to assign to fields of x. Ooops. In the meantime, it might work if you declare "x magic" instead of "x record". regards, tom lane