From 47888fe84227aaf3decffc7204554bdec54d2b29 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 31 Mar 2005 22:46:33 +0000 Subject: First phase of OUT-parameters project. We can now define and use SQL functions with OUT parameters. The various PLs still need work, as does pg_dump. Rudimentary docs and regression tests included. --- src/test/regress/output/create_function_2.source | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/test/regress/output/create_function_2.source') diff --git a/src/test/regress/output/create_function_2.source b/src/test/regress/output/create_function_2.source index f724963d35..dd308261d9 100644 --- a/src/test/regress/output/create_function_2.source +++ b/src/test/regress/output/create_function_2.source @@ -13,8 +13,8 @@ CREATE FUNCTION hobbies_by_name(hobbies_r.name%TYPE) RETURNS hobbies_r.person%TYPE AS 'select person from hobbies_r where name = $1' LANGUAGE 'sql'; -NOTICE: type reference hobbies_r.person%TYPE converted to text NOTICE: type reference hobbies_r.name%TYPE converted to text +NOTICE: type reference hobbies_r.person%TYPE converted to text CREATE FUNCTION equipment(hobbies_r) RETURNS setof equipment_r AS 'select * from equipment_r where hobby = $1.name' -- cgit v1.2.1