mirror of
https://github.com/postgres/postgres.git
synced 2026-01-13 12:22:55 +03:00
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:
@@ -436,3 +436,14 @@ elif typ == 'obj':
|
||||
type_record.second = second
|
||||
return type_record
|
||||
$$ LANGUAGE plpythonu;
|
||||
CREATE FUNCTION test_in_out_params(first in text, second out text) AS $$
|
||||
return first + '_in_to_out';
|
||||
$$ LANGUAGE plpythonu;
|
||||
-- this doesn't work yet :-(
|
||||
CREATE FUNCTION test_in_out_params_multi(first in text,
|
||||
second out text, third out text) AS $$
|
||||
return first + '_record_in_to_out';
|
||||
$$ LANGUAGE plpythonu;
|
||||
CREATE FUNCTION test_inout_params(first inout text) AS $$
|
||||
return first + '_inout';
|
||||
$$ LANGUAGE plpythonu;
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user