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:
parent
8b3e1b6e9e
commit
088a6fab1c
|
@ -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)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue