mirror of https://github.com/django/django.git
Removed a deprecated use of SQLCompiler as quote_name in GIS.
This commit is contained in:
parent
cf7a2a000e
commit
84d88f5cbe
|
@ -20,7 +20,7 @@ class GeoSQLCompiler(compiler.SQLCompiler):
|
||||||
This routine is overridden from Query to handle customized selection of
|
This routine is overridden from Query to handle customized selection of
|
||||||
geometry columns.
|
geometry columns.
|
||||||
"""
|
"""
|
||||||
qn = self
|
qn = self.quote_name_unless_alias
|
||||||
qn2 = self.connection.ops.quote_name
|
qn2 = self.connection.ops.quote_name
|
||||||
result = ['(%s) AS %s' % (self.get_extra_select_format(alias) % col[0], qn2(alias))
|
result = ['(%s) AS %s' % (self.get_extra_select_format(alias) % col[0], qn2(alias))
|
||||||
for alias, col in six.iteritems(self.query.extra_select)]
|
for alias, col in six.iteritems(self.query.extra_select)]
|
||||||
|
|
Loading…
Reference in New Issue