Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search archives
  Advanced Search

Re: ERROR: RETURN NEXT must specify a record or row variable in function returning tuple


  • From: <Eugen(dot)Konkov(at)aldec(dot)com>
  • To: <Eugen(dot)Konkov(at)aldec(dot)com>, <pgsql-bugs(at)postgresql(dot)org>
  • Subject: Re: ERROR: RETURN NEXT must specify a record or row variable in function returning tuple
  • Date: Fri, 28 Mar 2008 19:31:24 +0200
  • Message-id: <03f701c890f9$8c762ab0$1200a8c0@kharkov.localhost> <text/plain>

DECLARE v_row record;
BEGIN
select 1, row( 1,2) as result into v_row;
return next v_row.result
END;
This code cause "ERROR: RETURN NEXT must specify a record or row variable in function returning tuple"
BUG? TODO?


DECLARE v_row record;
DECLARE v_result record;
BEGIN
select 1, row( 1,2) as result into v_row;
v_result= v_row.result;
return next v_result;
END;
This workaround work fine

Sorry, I foget replace v_scalar with emply string, so ignore first post;


Home | Main Index | Thread Index

Privacy Policy | About PostgreSQL
Copyright © 1996 – 2012 PostgreSQL Global Development Group