Kaydet (Commit) 0eba8bd8 authored tarafından Carl Meyer's avatar Carl Meyer

Fixed GeoSQLCompiler to pass itself correctly to column as_sql.

üst 84d88f5c
......@@ -55,7 +55,7 @@ class GeoSQLCompiler(compiler.SQLCompiler):
aliases.add(r)
col_aliases.add(col[1])
else:
col_sql, col_params = col.as_sql(qn, self.connection)
col_sql, col_params = col.as_sql(self, self.connection)
result.append(col_sql)
params.extend(col_params)
......
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