support for geography types, thanks sunny

This commit is contained in:
mdipierro
2014-03-20 11:14:25 -05:00
parent 69ad382751
commit 2b60a1cd49
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
Version 2.9.5-stable+timestamp.2014.03.19.16.24.08
Version 2.9.5-stable+timestamp.2014.03.20.11.13.15

View File

@@ -1710,7 +1710,7 @@ class BaseAdapter(ConnectionPool):
return self.expand(field, colnames=True)
self._colnames = map(colexpand, fields)
def geoexpand(field):
if isinstance(field.type,str) and field.type.startswith('geometry') and isinstance(field, Field):
if isinstance(field.type,str) and field.type.startswith('geo') and isinstance(field, Field):
field = field.st_astext()
return self.expand(field)
sql_f = ', '.join(map(geoexpand, fields))