Commit ed941ef2 authored by Michael Manfre's avatar Michael Manfre
Browse files

Fixed signature of BaseDatabaseOperations.date_interval_sql()

Backport of 7fa7dd48 from master
parent 19c2fe04
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ class BaseDatabaseOperations(object):
        """
        raise NotImplementedError('subclasses of BaseDatabaseOperations may require a date_extract_sql() method')

    def date_interval_sql(self, sql, connector, timedelta):
    def date_interval_sql(self, timedelta):
        """
        Implements the date interval functionality for expressions
        """
+3 −0
Original line number Diff line number Diff line
@@ -1013,6 +1013,9 @@ those writing third-party backends in updating their code:
* The ``SQLCompiler.as_sql()`` method now takes a ``subquery`` parameter
  (:ticket:`24164`).

* The ``BaseDatabaseOperations.date_interval_sql()`` method now only takes a
  ``timedelta`` parameter.

:mod:`django.contrib.admin`
~~~~~~~~~~~~~~~~~~~~~~~~~~~