Consistently use "superuser" instead of "super user"
[pgsql.git] / src / pl / plpython / expected / plpython_void.out
blob1080d12d6b257439f8f041a880463ac1e3e91c27
1 --
2 -- Tests for functions that return void
3 --
4 CREATE FUNCTION test_void_func1() RETURNS void AS $$
5 x = 10
6 $$ LANGUAGE plpythonu;
7 -- illegal: can't return non-None value in void-returning func
8 CREATE FUNCTION test_void_func2() RETURNS void AS $$
9 return 10
10 $$ LANGUAGE plpythonu;
11 CREATE FUNCTION test_return_none() RETURNS int AS $$
12 None
13 $$ LANGUAGE plpythonu;
14 -- Tests for functions returning void
15 SELECT test_void_func1(), test_void_func1() IS NULL AS "is null";
16  test_void_func1 | is null 
17 -----------------+---------
18                  | f
19 (1 row)
21 SELECT test_void_func2(); -- should fail
22 ERROR:  PL/Python function with return type "void" did not return None
23 CONTEXT:  while creating return value
24 PL/Python function "test_void_func2"
25 SELECT test_return_none(), test_return_none() IS NULL AS "is null";
26  test_return_none | is null 
27 ------------------+---------
28                   | t
29 (1 row)