mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-09 23:54:09 -06:00
Revert code cleanup that wasn't 2.6 compatible.
This commit is contained in:
parent
95f43d59b8
commit
7450c2df0d
@ -90,7 +90,7 @@ def parse_typed_field_list(tokens):
|
||||
# " ( [ [ argmode ] [ argname ] argtype
|
||||
# [ { DEFAULT | = } default_expr ] [, ...] ] )"
|
||||
|
||||
mode_names = {'IN', 'OUT', 'INOUT', 'VARIADIC'}
|
||||
mode_names = set(('IN', 'OUT', 'INOUT', 'VARIADIC'))
|
||||
parse_state = 'type'
|
||||
parens = 0
|
||||
field = TypedFieldMetadata()
|
||||
|
Loading…
Reference in New Issue
Block a user