Allow to pass array as an input to the qtIdent.

This commit is contained in:
Ashesh Vashi 2016-01-07 08:38:55 +05:30
parent ee3efc369d
commit a086820288

View File

@ -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