summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera2017-05-25 18:41:43 +0000
committerAlvaro Herrera2017-05-25 18:41:43 +0000
commit08aa5506948e010dacaa344074063ccd0ecc3b21 (patch)
tree25b35452b95f9a425c4223c32ca65dae220bf365
parenteb67e2e35a046f700172fbce52ad2331fe6c57ac (diff)
Update expected file
Missed in ea3e310e712a.
-rw-r--r--src/pl/plpython/expected/plpython_ereport.out4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/plpython/expected/plpython_ereport.out b/src/pl/plpython/expected/plpython_ereport.out
index 1dafd94c72..e11999ce8c 100644
--- a/src/pl/plpython/expected/plpython_ereport.out
+++ b/src/pl/plpython/expected/plpython_ereport.out
@@ -68,13 +68,13 @@ CONTEXT: Traceback (most recent call last):
plpy.info('unsupported argument', blabla='fooboo')
PL/Python anonymous code block
DO $$ plpy.info('first message', message='second message') $$ LANGUAGE plpythonu;
-ERROR: TypeError: Argument 'message' given by name and position
+ERROR: TypeError: argument 'message' given by name and position
CONTEXT: Traceback (most recent call last):
PL/Python anonymous code block, line 1, in <module>
plpy.info('first message', message='second message')
PL/Python anonymous code block
DO $$ plpy.info('first message', 'second message', message='third message') $$ LANGUAGE plpythonu;
-ERROR: TypeError: Argument 'message' given by name and position
+ERROR: TypeError: argument 'message' given by name and position
CONTEXT: Traceback (most recent call last):
PL/Python anonymous code block, line 1, in <module>
plpy.info('first message', 'second message', message='third message')