summaryrefslogtreecommitdiff
path: root/src/pl
diff options
context:
space:
mode:
authorNeil Conway2006-03-01 21:09:32 +0000
committerNeil Conway2006-03-01 21:09:32 +0000
commit485541a3aaf17f6fa461de493130e2813b7b916d (patch)
tree0fdd1b79b9f3d3388159aa445fe1880bf8b1752e /src/pl
parent0cb0ec9ed911eb423047c602b17284222abdfcc7 (diff)
Update the expected regression test results to account for the changes to
error messages I made yesterday -- thanks to Andrew Dunstan for reporting this, and my apologies for missing it the first time.
Diffstat (limited to 'src/pl')
-rw-r--r--src/pl/plpython/expected/plpython_test.out2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpython/expected/plpython_test.out b/src/pl/plpython/expected/plpython_test.out
index 6aa550dad5d..2ccb3e94c8e 100644
--- a/src/pl/plpython/expected/plpython_test.out
+++ b/src/pl/plpython/expected/plpython_test.out
@@ -191,7 +191,7 @@ SELECT test_void_func1(), test_void_func1() IS NULL AS "is null";
SELECT test_void_func2(); -- should fail
ERROR: invalid return value from plpython function
-DETAIL: Functions returning type "void" must return "None".
+DETAIL: Functions returning type "void" must return None.
SELECT test_return_none(), test_return_none() IS NULL AS "is null";
test_return_none | is null
------------------+---------