Allow to pass array as an input to the qtIdent.
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