aboutsummaryrefslogtreecommitdiff
path: root/src/pl/plpython/expected/plpython_function.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/pl/plpython/expected/plpython_function.out')
-rw-r--r--src/pl/plpython/expected/plpython_function.out5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pl/plpython/expected/plpython_function.out b/src/pl/plpython/expected/plpython_function.out
index 4ace0445d9a..79e225398e8 100644
--- a/src/pl/plpython/expected/plpython_function.out
+++ b/src/pl/plpython/expected/plpython_function.out
@@ -357,8 +357,11 @@ CREATE FUNCTION test_return_none() RETURNS int AS $$
None
$$ LANGUAGE plpythonu;
--
--- Test named parameters
+-- Test named and nameless parameters
--
+CREATE FUNCTION test_param_names0(integer, integer) RETURNS int AS $$
+return args[0] + args[1]
+$$ LANGUAGE plpythonu;
CREATE FUNCTION test_param_names1(a0 integer, a1 text) RETURNS boolean AS $$
assert a0 == args[0]
assert a1 == args[1]