mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-07 19:37:26 +08:00
Allow PL/Python functions to return void, per gripe from James Robinson
(I didn't use his patch, however). A void-returning PL/Python function must return None (from Python), which is translated into a void datum (and *not* NULL) for Postgres. I also added some regression tests for this functionality.
This commit is contained in:
@ -182,3 +182,19 @@ SELECT newline_crlf();
|
||||
123
|
||||
(1 row)
|
||||
|
||||
-- Tests for functions returning void
|
||||
SELECT test_void_func1(), test_void_func1() IS NULL AS "is null";
|
||||
test_void_func1 | is null
|
||||
-----------------+---------
|
||||
| f
|
||||
(1 row)
|
||||
|
||||
SELECT test_void_func2(); -- should fail
|
||||
ERROR: unexpected return value from plpython procedure
|
||||
DETAIL: void-returning functions must return "None"
|
||||
SELECT test_return_none(), test_return_none() IS NULL AS "is null";
|
||||
test_return_none | is null
|
||||
------------------+---------
|
||||
| t
|
||||
(1 row)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user