mirror of
https://github.com/django/django.git
synced 2025-09-28 04:54:53 +00:00
Removed a deprecated use of SQLCompiler as quote_name in GIS.
This commit is contained in:
parent
cf7a2a000e
commit
84d88f5cbe
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ class GeoSQLCompiler(compiler.SQLCompiler):
|
|||
This routine is overridden from Query to handle customized selection of
|
||||
geometry columns.
|
||||
"""
|
||||
qn = self
|
||||
qn = self.quote_name_unless_alias
|
||||
qn2 = self.connection.ops.quote_name
|
||||
result = ['(%s) AS %s' % (self.get_extra_select_format(alias) % col[0], qn2(alias))
|
||||
for alias, col in six.iteritems(self.query.extra_select)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue