Fix plpython to not get totally confused by OUT arguments. (It still doesn't

support multiple OUT arguments, though.)

Hannu Krosing
This commit is contained in:
Tom Lane
2008-05-03 02:47:48 +00:00
parent d61eecb5a1
commit bdc7dd6799
5 changed files with 115 additions and 49 deletions

View File

@ -539,3 +539,18 @@ SELECT * FROM test_type_record_as('obj', null, null, true);
|
(1 row)
SELECT * FROM test_in_out_params('test_in');
second
-------------------
test_in_in_to_out
(1 row)
-- this doesn't work yet :-(
SELECT * FROM test_in_out_params_multi('test_in');
ERROR: plpython functions cannot return type record
SELECT * FROM test_inout_params('test_in');
first
---------------
test_in_inout
(1 row)