From bdc7dd6799ce6effc48de58ca9ecbec82461d8b6 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 3 May 2008 02:47:48 +0000 Subject: Fix plpython to not get totally confused by OUT arguments. (It still doesn't support multiple OUT arguments, though.) Hannu Krosing --- src/pl/plpython/sql/plpython_test.sql | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/pl/plpython/sql/plpython_test.sql') diff --git a/src/pl/plpython/sql/plpython_test.sql b/src/pl/plpython/sql/plpython_test.sql index dafcae089e..f7321ab9e0 100644 --- a/src/pl/plpython/sql/plpython_test.sql +++ b/src/pl/plpython/sql/plpython_test.sql @@ -143,3 +143,8 @@ SELECT * FROM test_type_record_as('obj', 'one', null, false); SELECT * FROM test_type_record_as('obj', null, 2, false); SELECT * FROM test_type_record_as('obj', 'three', 3, false); SELECT * FROM test_type_record_as('obj', null, null, true); + +SELECT * FROM test_in_out_params('test_in'); +-- this doesn't work yet :-( +SELECT * FROM test_in_out_params_multi('test_in'); +SELECT * FROM test_inout_params('test_in'); -- cgit v1.2.1