Kaydet (Commit) 1f58834a authored tarafından Anssi Kääriäinen's avatar Anssi Kääriäinen

Fixed #21825 -- gis compiler uses self instead of qn for as_sql()

üst 994c842b
......@@ -26,7 +26,7 @@ class GeoSQLCompiler(compiler.SQLCompiler):
This routine is overridden from Query to handle customized selection of
geometry columns.
"""
qn = self.quote_name_unless_alias
qn = self
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)]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment