mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-07 22:53:45 -06:00
Allow to pass array as an input to the qtIdent.
This commit is contained in:
parent
ee3efc369d
commit
a086820288
@ -877,6 +877,9 @@ class Driver(BaseDriver):
|
||||
value = None
|
||||
|
||||
for val in args:
|
||||
if type(val) == list:
|
||||
return map(lambda w: Driver.qtIdent(conn, w), val)
|
||||
|
||||
if len(val) == 0:
|
||||
continue
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user