Re: 8.1 release notes

From: Michael Fuhr <mike(at)fuhr(dot)org>
To: pgsql-hackers(at)postgresql(dot)org
Subject: Re: 8.1 release notes
Date: 2005-08-25 00:34:19
Message-ID: 20050825003419.GA19329@winnie.fuhr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

OUT and INOUT work for PL/Perl but I don't see that mentioned in
E.1.3.8. General Server-Side Language Changes or in E.1.3.10. PL/Perl
Server-Side Language Changes. The former mentions only SQL and
PL/pgSQL and says that "The feature will be extended to other PLs
in due course."

CREATE FUNCTION foo(IN x integer, INOUT y integer, OUT z integer) AS $$
return {y => $_[1], z => $_[0]};
$$ LANGUAGE plperl;

SELECT * FROM foo(1, 2);
y | z
---+---
2 | 1
(1 row)

--
Michael Fuhr

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2005-08-25 01:02:34 Re: [HACKERS] Proposed patch to getaddrinfo.c to support
Previous Message Bruce Momjian 2005-08-25 00:32:00 Update pg_config.h.win32 for beta?