From: rwell <rwell(at)sinaman(dot)com>
To: <pgsql-general(at)postgresql(dot)org>
Subject:
Date: 2001-05-23 08:49:00
Message-ID: 20010523164900.9827.qmail@hk.sina.com.hk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


How can I return RECORD in my function as I get this msg

ERROR: fmgr_info: function 0: cache lookup failed

my function was delcared like this:

create function testfunction() returns record as '
declare
result record;
begin
select into result * from test;
return record;
end;
' language 'plpgsql'
Thx
==================================================================
新浪免費電子信箱 http://sinamail.sina.com.hk

Responses

  • Re: at 2001-05-23 19:33:38 from Tom Lane

Browse pgsql-general by date

  From Date Subject
Next Message Richard Huxton 2001-05-23 08:49:27 Re: can't start as root
Previous Message Richard Huxton 2001-05-23 08:46:27 Re: NOTIFY/LISTEN Using Embedded SQL (ecpg)