Commit 08aa5506 authored by Alvaro Herrera's avatar Alvaro Herrera

Update expected file

Missed in ea3e310e.
parent eb67e2e3
...@@ -68,13 +68,13 @@ CONTEXT: Traceback (most recent call last): ...@@ -68,13 +68,13 @@ CONTEXT: Traceback (most recent call last):
plpy.info('unsupported argument', blabla='fooboo') plpy.info('unsupported argument', blabla='fooboo')
PL/Python anonymous code block PL/Python anonymous code block
DO $$ plpy.info('first message', message='second message') $$ LANGUAGE plpythonu; 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): CONTEXT: Traceback (most recent call last):
PL/Python anonymous code block, line 1, in <module> PL/Python anonymous code block, line 1, in <module>
plpy.info('first message', message='second message') plpy.info('first message', message='second message')
PL/Python anonymous code block PL/Python anonymous code block
DO $$ plpy.info('first message', 'second message', message='third message') $$ LANGUAGE plpythonu; 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): CONTEXT: Traceback (most recent call last):
PL/Python anonymous code block, line 1, in <module> PL/Python anonymous code block, line 1, in <module>
plpy.info('first message', 'second message', message='third message') plpy.info('first message', 'second message', message='third message')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment