diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-05-03 02:47:48 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-05-03 02:47:48 +0000 |
| commit | bdc7dd6799ce6effc48de58ca9ecbec82461d8b6 (patch) | |
| tree | 940bcb9df06f6f6d81d54368968c7799ab3c59fc /src/pl/plpython/sql/plpython_test.sql | |
| parent | d61eecb5a17d1b9373ca75fb4d6de4e35ba3f640 (diff) | |
| download | postgresql-bdc7dd6799ce6effc48de58ca9ecbec82461d8b6.tar.gz | |
Fix plpython to not get totally confused by OUT arguments. (It still doesn't
support multiple OUT arguments, though.)
Hannu Krosing
Diffstat (limited to 'src/pl/plpython/sql/plpython_test.sql')
| -rw-r--r-- | src/pl/plpython/sql/plpython_test.sql | 5 |
1 files changed, 5 insertions, 0 deletions
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'); |
