mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-06-08 16:46:14 -04:00
convert to a list here for py3k
This commit is contained in:
@@ -1225,7 +1225,7 @@ class TextClause(Executable, ClauseElement):
|
||||
for key, type_ in types.items():
|
||||
col_by_name[key] = ColumnClause(key, type_)
|
||||
|
||||
return selectable.TextAsFrom(self, col_by_name.values())
|
||||
return selectable.TextAsFrom(self, list(col_by_name.values()))
|
||||
|
||||
@property
|
||||
def type(self):
|
||||
|
||||
Reference in New Issue
Block a user