fixed issue with multiple string expressions in select
This commit is contained in:
@@ -1 +1 @@
|
||||
Version 2.4.1-alpha.2+timestamp.2013.01.20.14.12.54
|
||||
Version 2.4.1-alpha.2+timestamp.2013.01.20.14.22.13
|
||||
|
||||
+1
-1
@@ -1444,7 +1444,7 @@ class BaseAdapter(ConnectionPool):
|
||||
tablename,fieldname = item.split('.')
|
||||
append(db[tablename][fieldname])
|
||||
else:
|
||||
append(Expression(db,lambda:item))
|
||||
append(Expression(db,lambda item=item:item))
|
||||
else:
|
||||
append(item)
|
||||
# ## if no fields specified take them all from the requested tables
|
||||
|
||||
Reference in New Issue
Block a user