Update expected file
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Thu, 25 May 2017 18:41:43 +0000 (14:41 -0400)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Thu, 25 May 2017 18:41:43 +0000 (14:41 -0400)
Missed in ea3e310e712a.

src/pl/plpython/expected/plpython_ereport.out

index 1dafd94c7214b521cef988aa8a9f4176413e08ef..e11999ce8c8c666300252c521510002e8648345c 100644 (file)
@@ -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')