File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -68,13 +68,13 @@ CONTEXT: Traceback (most recent call last):
68
68
plpy.info('unsupported argument', blabla='fooboo')
69
69
PL/Python anonymous code block
70
70
DO $$ plpy.info('first message', message='second message') $$ LANGUAGE plpythonu;
71
- ERROR: TypeError: Argument 'message' given by name and position
71
+ ERROR: TypeError: argument 'message' given by name and position
72
72
CONTEXT: Traceback (most recent call last):
73
73
PL/Python anonymous code block, line 1, in <module>
74
74
plpy.info('first message', message='second message')
75
75
PL/Python anonymous code block
76
76
DO $$ plpy.info('first message', 'second message', message='third message') $$ LANGUAGE plpythonu;
77
- ERROR: TypeError: Argument 'message' given by name and position
77
+ ERROR: TypeError: argument 'message' given by name and position
78
78
CONTEXT: Traceback (most recent call last):
79
79
PL/Python anonymous code block, line 1, in <module>
80
80
plpy.info('first message', 'second message', message='third message')
You can’t perform that action at this time.
0 commit comments