Refs #24793 -- Removed bogus connection argument from SQLCompiler.compile() calls.

The method doesn't expect a connection object to be passed as its second
argument.
This commit is contained in:
Simon Charette 2019-08-09 21:17:45 -04:00 committed by Mariusz Felisiak
parent 8b3e1b6e9e
commit 088a6fab1c
1 changed files with 2 additions and 2 deletions

View File

@ -492,8 +492,8 @@ class TemporalSubtraction(CombinedExpression):
def as_sql(self, compiler, connection):
connection.ops.check_expression_support(self)
lhs = compiler.compile(self.lhs, connection)
rhs = compiler.compile(self.rhs, connection)
lhs = compiler.compile(self.lhs)
rhs = compiler.compile(self.rhs)
return connection.ops.subtract_temporals(self.lhs.output_field.get_internal_type(), lhs, rhs)