mirror of
https://github.com/postgres/postgres.git
synced 2026-03-03 13:51:00 -05:00
parent
eb67e2e35a
commit
08aa550694
1 changed files with 2 additions and 2 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in a new issue